diff options
author | David Athay <ko2fan@gmail.com> | 2009-02-11 22:17:47 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2009-02-11 22:17:47 +0000 |
commit | 5e01985ee82007307c96f900057679485b977196 (patch) | |
tree | 818ee5c5ae3b02708c0fe5d75aad1ef25906e3f4 /src/gui/table.cpp | |
parent | 91111ca5d13072ea3b834e23835df9c077329e39 (diff) | |
parent | 7b007058afab8ea920a5d60b31f45958e5622878 (diff) | |
download | mana-5e01985ee82007307c96f900057679485b977196.tar.gz mana-5e01985ee82007307c96f900057679485b977196.tar.bz2 mana-5e01985ee82007307c96f900057679485b977196.tar.xz mana-5e01985ee82007307c96f900057679485b977196.zip |
Merge branch 'master' of git@gitorious.org:tmw/eathena
Diffstat (limited to 'src/gui/table.cpp')
-rw-r--r-- | src/gui/table.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 8dd546d9..567272f0 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -275,7 +275,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())); } @@ -329,7 +329,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); @@ -351,7 +351,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, |