diff options
author | Vladimir Menshakov | 2009-09-15 22:34:32 +0000 |
---|---|---|
committer | Vladimir Menshakov | 2009-09-15 22:34:32 +0000 |
commit | 0ec948e86720f507b306e468c6c5c2fba5d5d322 (patch) | |
tree | aad4f87aad8aeb42f292cf873205b3df987977b7 /engines | |
parent | 6fcf8adb0454e3c9c5ec372512db60906dd58363 (diff) | |
download | scummvm-rg350-0ec948e86720f507b306e468c6c5c2fba5d5d322.tar.gz scummvm-rg350-0ec948e86720f507b306e468c6c5c2fba5d5d322.tar.bz2 scummvm-rg350-0ec948e86720f507b306e468c6c5c2fba5d5d322.zip |
commented out noisy debug
svn-id: r44114
Diffstat (limited to 'engines')
-rw-r--r-- | engines/teenagent/animation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/teenagent/animation.cpp b/engines/teenagent/animation.cpp index c77d43594a..1f5919ebd3 100644 --- a/engines/teenagent/animation.cpp +++ b/engines/teenagent/animation.cpp @@ -180,11 +180,11 @@ void Animation::load(Common::SeekableReadStream *s, Type type) { uint16 offset[255]; for (byte i = 0; i < frames_count; ++i) { offset[i] = s->readUint16LE(); - debug(0, "%u: %04x", i, offset[i]); + //debug(0, "%u: %04x", i, offset[i]); } frames = new Surface[frames_count]; for (uint16 i = 0; i < frames_count; ++i) { - debug(0, "%04x", offset[i]); + //debug(0, "%04x", offset[i]); s->seek(offset[i] + off); frames[i].load(s, Surface::kTypeOns); frames[i].x = 0; |