summaryrefslogtreecommitdiff
path: root/src/textparticle.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-12-24 00:43:24 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-12-24 00:56:21 +0100
commit4f14fde764bf0624700e88f9fa7d5d84d543aaec (patch)
treeddae94d2f4ee8b7dd2621bd2fa5ec789d48cf35b /src/textparticle.cpp
parent3570761872e01c61d657af6b761ded2e0da1b23f (diff)
downloadmana-client-4f14fde764bf0624700e88f9fa7d5d84d543aaec.tar.gz
mana-client-4f14fde764bf0624700e88f9fa7d5d84d543aaec.tar.bz2
mana-client-4f14fde764bf0624700e88f9fa7d5d84d543aaec.tar.xz
mana-client-4f14fde764bf0624700e88f9fa7d5d84d543aaec.zip
Alpha property of outline and shadow of rendered text is now taken from the guichan color of the main text instead of an additional argument. Fixed alpha blending of text particles.
Diffstat (limited to 'src/textparticle.cpp')
-rw-r--r--src/textparticle.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/textparticle.cpp b/src/textparticle.cpp
index ae36a121..c639b937 100644
--- a/src/textparticle.cpp
+++ b/src/textparticle.cpp
@@ -53,8 +53,9 @@ void TextParticle::draw(Graphics *graphics, int offsetX, int offsetY) const
alpha = alpha * mLifetimePast / mFadeIn;
gcn::Color color = *mColor;
+ color.a = (int)alpha;
TextRenderer::renderText(graphics, mText,
screenX, screenY, gcn::Graphics::CENTER,
- color, mTextFont, mOutline, false, (int) alpha);
+ color, mTextFont, mOutline, false);
}