aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent
diff options
context:
space:
mode:
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;