aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorVladimir Menshakov2009-11-08 11:04:48 +0000
committerVladimir Menshakov2009-11-08 11:04:48 +0000
commit99bd90cfac6f7c5f54bc9544368773fdef25d2b5 (patch)
tree9fe41bc4e184c0998e4aad36d0610d9288bed2e4 /engines
parent4e662b22ca3019af8519900c6889f532a2707a23 (diff)
downloadscummvm-rg350-99bd90cfac6f7c5f54bc9544368773fdef25d2b5.tar.gz
scummvm-rg350-99bd90cfac6f7c5f54bc9544368773fdef25d2b5.tar.bz2
scummvm-rg350-99bd90cfac6f7c5f54bc9544368773fdef25d2b5.zip
removed noisy debug message
svn-id: r45751
Diffstat (limited to 'engines')
-rw-r--r--engines/teenagent/pack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/teenagent/pack.cpp b/engines/teenagent/pack.cpp
index fc1918acb4..50577b9d81 100644
--- a/engines/teenagent/pack.cpp
+++ b/engines/teenagent/pack.cpp
@@ -77,7 +77,7 @@ uint32 Pack::read(uint32 id, byte *dst, uint32 size) const {
Common::SeekableReadStream *Pack::getStream(uint32 id) const {
if (id < 1 || id > count)
return 0;
- debug(0, "stream: %04x-%04x", offsets[id - 1], offsets[id]);
+ //debug(0, "stream: %04x-%04x", offsets[id - 1], offsets[id]);
return new Common::SeekableSubReadStream(&file, offsets[id - 1], offsets[id], Common::DisposeAfterUse::NO);
}