diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-11 17:12:00 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-11 10:12:36 -0700 |
commit | 3bf163c923526e545d9738d0047b5de352a85a7c (patch) | |
tree | 7a6bd6c8645f6f0853d2485b52ccbcb51391e603 /src/gui/shoplistbox.cpp | |
parent | 1ea7d80aff0961e6f55ee467b8cbe26d146828f8 (diff) | |
download | mana-3bf163c923526e545d9738d0047b5de352a85a7c.tar.gz mana-3bf163c923526e545d9738d0047b5de352a85a7c.tar.bz2 mana-3bf163c923526e545d9738d0047b5de352a85a7c.tar.xz mana-3bf163c923526e545d9738d0047b5de352a85a7c.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 4f9f9024..6d3d9464 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -68,7 +68,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); |