diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-08-04 18:31:21 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-08-04 18:31:21 +0000 |
commit | 20768da80e4475531b3487c51c900265c9cc333e (patch) | |
tree | 865b50070a5dc36deecb84e6d12796640dc91e1e | |
parent | 682cabf5d7269ac751ad9be433f300801c704128 (diff) | |
download | mana-client-20768da80e4475531b3487c51c900265c9cc333e.tar.gz mana-client-20768da80e4475531b3487c51c900265c9cc333e.tar.bz2 mana-client-20768da80e4475531b3487c51c900265c9cc333e.tar.xz mana-client-20768da80e4475531b3487c51c900265c9cc333e.zip |
Fix enum being treated as string.
-rw-r--r-- | src/animatedsprite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/animatedsprite.cpp b/src/animatedsprite.cpp index cc8399a4..d1201042 100644 --- a/src/animatedsprite.cpp +++ b/src/animatedsprite.cpp @@ -249,7 +249,7 @@ AnimatedSprite::play(SpriteAction action, int time) if (i == mActions.end()) { - logger->log("Warning: no action \"%s\" defined!", action); + logger->log("Warning: no action \"%u\" defined!", action); mAction = NULL; return; } |