summaryrefslogtreecommitdiff
path: root/src/gui/table.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-02-11 17:12:00 +0100
committerIra Rice <irarice@gmail.com>2009-02-11 10:12:36 -0700
commit3bf163c923526e545d9738d0047b5de352a85a7c (patch)
tree7a6bd6c8645f6f0853d2485b52ccbcb51391e603 /src/gui/table.cpp
parent1ea7d80aff0961e6f55ee467b8cbe26d146828f8 (diff)
downloadmana-client-3bf163c923526e545d9738d0047b5de352a85a7c.tar.gz
mana-client-3bf163c923526e545d9738d0047b5de352a85a7c.tar.bz2
mana-client-3bf163c923526e545d9738d0047b5de352a85a7c.tar.xz
mana-client-3bf163c923526e545d9738d0047b5de352a85a7c.zip
Shut up some compiler warnings.
Diffstat (limited to 'src/gui/table.cpp')
-rw-r--r--src/gui/table.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/table.cpp b/src/gui/table.cpp
index de7f11b2..1793948b 100644
--- a/src/gui/table.cpp
+++ b/src/gui/table.cpp
@@ -276,7 +276,7 @@ void GuiTable::draw(gcn::Graphics* graphics)
const int red = getBackgroundColor().r;
const int green = getBackgroundColor().g;
const int blue = getBackgroundColor().b;
- const int alpha = mAlpha * 255;
+ const int alpha = (int)(mAlpha * 255.0f);
graphics->setColor(gcn::Color(red, green, blue, alpha));
graphics->fillRectangle(gcn::Rectangle(0, 0, getWidth(), getHeight()));
}
@@ -330,7 +330,7 @@ void GuiTable::draw(gcn::Graphics* graphics)
const int green =
(textColor->getColor('H', valid) >> 8) & 0xFF;
const int blue = textColor->getColor('H', valid) & 0xFF;
- const int alpha = mAlpha * 127;
+ const int alpha = (int)(mAlpha * 127.0f);
graphics->setColor(gcn::Color(red, green, blue, alpha));
graphics->fillRectangle(bounds);
@@ -352,7 +352,7 @@ void GuiTable::draw(gcn::Graphics* graphics)
const int green =
(textColor->getColor('H', valid) >> 8) & 0xFF;
const int blue = textColor->getColor('H', valid) & 0xFF;
- const int alpha = mAlpha * 127;
+ const int alpha = (int)(mAlpha * 127.0f);
graphics->setColor(gcn::Color(red, green, blue, alpha));
graphics->fillRectangle(gcn::Rectangle(0, y_offset,