From 0ec948e86720f507b306e468c6c5c2fba5d5d322 Mon Sep 17 00:00:00 2001 From: Vladimir Menshakov Date: Tue, 15 Sep 2009 22:34:32 +0000 Subject: commented out noisy debug svn-id: r44114 --- engines/teenagent/animation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') 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; -- cgit v1.2.3