aboutsummaryrefslogtreecommitdiff
path: root/engines/toon
diff options
context:
space:
mode:
authorMax Horn2010-11-01 16:04:47 +0000
committerMax Horn2010-11-01 16:04:47 +0000
commit9a350f43980d82ec001c077b28c035350478fe8e (patch)
tree3f9beb48843afcfff576b12f770c01e0eac72be9 /engines/toon
parent459ef850684e9f11f2dbb5b129a674048a7cef81 (diff)
downloadscummvm-rg350-9a350f43980d82ec001c077b28c035350478fe8e.tar.gz
scummvm-rg350-9a350f43980d82ec001c077b28c035350478fe8e.tar.bz2
scummvm-rg350-9a350f43980d82ec001c077b28c035350478fe8e.zip
ENGINES: Get rid of some (f)printfs
svn-id: r54011
Diffstat (limited to 'engines/toon')
-rw-r--r--engines/toon/character.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/toon/character.cpp b/engines/toon/character.cpp
index f6e244a064..e4cb48050e 100644
--- a/engines/toon/character.cpp
+++ b/engines/toon/character.cpp
@@ -443,11 +443,11 @@ void Character::update(int32 timeIncrement) {
#if 0
if (_id == 0)
- printf(" drew animation name %s / flag %d / frame %d \n", _specialAnim->_name, _animFlags, nextFrame);
+ debug(" drew animation name %s / flag %d / frame %d", _specialAnim->_name, _animFlags, nextFrame);
if (_id == 1)
- debugC(0, 0xfff, " flux animation flag %d / frame %d", _animFlags, nextFrame);
+ debug(" flux animation flag %d / frame %d", _animFlags, nextFrame);
if (_id == 7)
- debugC(0, 0xfff, " footman animation flag %d / frame %d", _animFlags, nextFrame);
+ debug(" footman animation flag %d / frame %d", _animFlags, nextFrame);
#endif
_time = nextTime;