diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-01-26 21:00:03 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-01-26 21:00:03 +0000 |
commit | 0962fc8b567279a6e97e13e4b3f2f9f2ffe304c0 (patch) | |
tree | 52ca5a6b6ee9a1d6ed01c11129a86f5b507d9761 /src/gui/truetypefont.cpp | |
parent | 89a1dcb59be3e531cc0761c32d1aa70e141d4a12 (diff) | |
download | mana-0962fc8b567279a6e97e13e4b3f2f9f2ffe304c0.tar.gz mana-0962fc8b567279a6e97e13e4b3f2f9f2ffe304c0.tar.bz2 mana-0962fc8b567279a6e97e13e4b3f2f9f2ffe304c0.tar.xz mana-0962fc8b567279a6e97e13e4b3f2f9f2ffe304c0.zip |
Image alpha should also be set to 1, in case it was changed before.
Diffstat (limited to 'src/gui/truetypefont.cpp')
-rw-r--r-- | src/gui/truetypefont.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/truetypefont.cpp b/src/gui/truetypefont.cpp index 82c55413..7f9abd3a 100644 --- a/src/gui/truetypefont.cpp +++ b/src/gui/truetypefont.cpp @@ -35,7 +35,7 @@ class TextChunk { public: - TextChunk(const std::string &text, gcn::Color color) : + TextChunk(const std::string &text, const gcn::Color &color) : img(NULL), text(text), color(color) { } @@ -130,12 +130,12 @@ void TrueTypeFont::drawString(gcn::Graphics *graphics, } gcn::Color col = g->getColor(); - float alpha = 1.0f; - if (col.a != 255) alpha = col.a / 255.0f; - col.a = 255; - /* alpha value is ignored at sting generation so it makes no sense to - * cache the same text with different alpha values. + const float alpha = col.a / 255.0f; + + /* The alpha value is ignored at string generation so avoid caching the + * same text with different alpha values. */ + col.a = 255; TextChunk chunk(text, col); @@ -163,7 +163,7 @@ void TrueTypeFont::drawString(gcn::Graphics *graphics, cache.front().generate(mFont); } - if (alpha != 1.0f) cache.front().img->setAlpha(alpha); + cache.front().img->setAlpha(alpha); g->drawImage(cache.front().img, x, y); } |