diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-11 17:12:00 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-11 17:12:00 +0100 |
commit | 3db37c9e66aca4736ee84a561fa855bd404ad29b (patch) | |
tree | 7c59f733776490d7c983a15894acb7c17f736159 /src/gui/shoplistbox.cpp | |
parent | f262dbd28f08001d70416e3cc4e62273d3fee2cd (diff) | |
download | mana-3db37c9e66aca4736ee84a561fa855bd404ad29b.tar.gz mana-3db37c9e66aca4736ee84a561fa855bd404ad29b.tar.bz2 mana-3db37c9e66aca4736ee84a561fa855bd404ad29b.tar.xz mana-3db37c9e66aca4736ee84a561fa855bd404ad29b.zip |
Shut up some compiler warnings.
Diffstat (limited to 'src/gui/shoplistbox.cpp')
-rw-r--r-- | src/gui/shoplistbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index 94187818..8aed3c77 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -67,7 +67,7 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) const int red = (textColor->getColor('H', valid) >> 16) & 0xFF; const int green = (textColor->getColor('H', valid) >> 8) & 0xFF; const int blue = textColor->getColor('H', valid) & 0xFF; - const int alpha = mAlpha * 255; + const int alpha = (int)(mAlpha * 255.0f); Graphics *graphics = static_cast<Graphics*>(gcnGraphics); |