aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/pack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/teenagent/pack.cpp')
-rw-r--r--engines/teenagent/pack.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/teenagent/pack.cpp b/engines/teenagent/pack.cpp
index 6f22134143..67c58895e1 100644
--- a/engines/teenagent/pack.cpp
+++ b/engines/teenagent/pack.cpp
@@ -47,11 +47,11 @@ void Pack::open(const Common::String &filename) {
count = file.readUint32LE();
debug(0, "opened %s, found %u entries", filename.c_str(), count);
offsets = new uint32[count + 1];
- for(uint32 i = 0; i <= count; ++i) {
+ for (uint32 i = 0; i <= count; ++i) {
offsets[i] = file.readUint32LE();
//debug(0, "%d: %06x", i, offsets[i]);
}
-/* for(uint32 i = 0; i < count; ++i) {
+/* for (uint32 i = 0; i < count; ++i) {
debug(0, "%d: len = %d", i, offsets[i + 1] - offsets[i]);
}
*/