summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <tmw@crushnet.org>2007-05-23 21:45:43 +0000
committerPhilipp Sehmisch <tmw@crushnet.org>2007-05-23 21:45:43 +0000
commit993c98c3813b2ad7caf3dcd9761b4c9a17de39b6 (patch)
tree08cad1b1c2e129f17da0e905248b7768173cc1f4 /src/being.cpp
parent114e76641ccde78fcb9f4ca2fcf7c9a909e176ba (diff)
downloadMana-993c98c3813b2ad7caf3dcd9761b4c9a17de39b6.tar.gz
Mana-993c98c3813b2ad7caf3dcd9761b4c9a17de39b6.tar.bz2
Mana-993c98c3813b2ad7caf3dcd9761b4c9a17de39b6.tar.xz
Mana-993c98c3813b2ad7caf3dcd9761b4c9a17de39b6.zip
The color values of text particles are now stored in 3 integers instead of a Guichan color structure.
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 193582e9..5c0bac7f 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -190,7 +190,7 @@ Being::takeDamage(int amount)
// show damage number
particleEngine->addTextSplashEffect(damage,
font,
- gcn::Color(255, 255, 255),
+ 255, 255, 255,
mPx + 16, mPy + 16);
}