aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent
diff options
context:
space:
mode:
authorVladimir Menshakov2009-09-15 22:34:32 +0000
committerVladimir Menshakov2009-09-15 22:34:32 +0000
commit0ec948e86720f507b306e468c6c5c2fba5d5d322 (patch)
treeaad4f87aad8aeb42f292cf873205b3df987977b7 /engines/teenagent
parent6fcf8adb0454e3c9c5ec372512db60906dd58363 (diff)
downloadscummvm-rg350-0ec948e86720f507b306e468c6c5c2fba5d5d322.tar.gz
scummvm-rg350-0ec948e86720f507b306e468c6c5c2fba5d5d322.tar.bz2
scummvm-rg350-0ec948e86720f507b306e468c6c5c2fba5d5d322.zip
commented out noisy debug
svn-id: r44114
Diffstat (limited to 'engines/teenagent')
-rw-r--r--engines/teenagent/animation.cpp4
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;