diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:39:17 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:39:17 +0100 |
commit | 9b4febf79ecd220807d4a462d5945aa0aa561269 (patch) | |
tree | 42c9c5d472ce812f69da98938667df415c8450c2 /src/gui/shoplistbox.cpp | |
parent | d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab (diff) | |
download | mana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.gz mana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.bz2 mana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.xz mana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.zip |
Fixed some accidental capitalization errors
Diffstat (limited to 'src/gui/shoplistbox.cpp')
-rw-r--r-- | src/gui/shoplistbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index f44bf87b..94187818 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -64,9 +64,9 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) mAlpha = config.getValue("guialpha", 0.8); bool valid; - 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 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; Graphics *graphics = static_cast<Graphics*>(gcnGraphics); |