diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2007-05-23 22:11:54 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2007-05-23 22:11:54 +0000 |
commit | 0e7df1f731f9afe24c6ba7458211f4c81e4717b3 (patch) | |
tree | b7ef48b879a90c8d10f9447fe910c6fb62784461 /src/textparticle.cpp | |
parent | 993c98c3813b2ad7caf3dcd9761b4c9a17de39b6 (diff) | |
download | mana-0e7df1f731f9afe24c6ba7458211f4c81e4717b3.tar.gz mana-0e7df1f731f9afe24c6ba7458211f4c81e4717b3.tar.bz2 mana-0e7df1f731f9afe24c6ba7458211f4c81e4717b3.tar.xz mana-0e7df1f731f9afe24c6ba7458211f4c81e4717b3.zip |
Changed argument order in text particle creation.
Diffstat (limited to 'src/textparticle.cpp')
-rw-r--r-- | src/textparticle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textparticle.cpp b/src/textparticle.cpp index ef4ebc48..dd01d2fe 100644 --- a/src/textparticle.cpp +++ b/src/textparticle.cpp @@ -25,8 +25,8 @@ #include "graphics.h" -TextParticle::TextParticle(Map *map, const std::string &text, gcn::Font *font, - int colorR, int colorG, int colorB): +TextParticle::TextParticle(Map *map, const std::string &text, + int colorR, int colorG, int colorB, gcn::Font *font): Particle(map), mText(text), mTextFont(font), |