diff options
-rw-r--r-- | engines/macventure/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/container.h b/engines/macventure/container.h index 3573ddabeb..9cfa013c82 100644 --- a/engines/macventure/container.h +++ b/engines/macventure/container.h @@ -177,7 +177,7 @@ public: uint32 groupID = (id >> 6); uint32 objectIndex = id & 0x3f; // Index within the group - _res->seek((groupID * 6), SEEK_SET); + _res->seek(4 + (groupID * 6), SEEK_SET); uint32 offset = 0; for (uint i = 0; i < objectIndex; i++) { |