aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-09-14 12:11:28 +0000
committerTravis Howell2005-09-14 12:11:28 +0000
commitcfa4ccf2e783d1cad88d97809e3596ca17069056 (patch)
treee7a8468d8e53b1ef1f5ac716f4777d123b7bea2b /scumm
parenta5b1a8a2b5ce723277e04948ebe986c11f8023a6 (diff)
downloadscummvm-rg350-cfa4ccf2e783d1cad88d97809e3596ca17069056.tar.gz
scummvm-rg350-cfa4ccf2e783d1cad88d97809e3596ca17069056.tar.bz2
scummvm-rg350-cfa4ccf2e783d1cad88d97809e3596ca17069056.zip
ZZZZZZZZZZZZZZCCCVS: ----------------------------------------------------------------------
Skip walkbox data in C64 maniac for now. svn-id: r18824
Diffstat (limited to 'scumm')
-rw-r--r--scumm/room.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/room.cpp b/scumm/room.cpp
index faa4e502ee..af15fc2288 100644
--- a/scumm/room.cpp
+++ b/scumm/room.cpp
@@ -691,6 +691,10 @@ void ScummEngine_v3old::initRoomSubBlocks() {
res.nukeResource(rtMatrix, 1);
res.nukeResource(rtMatrix, 2);
+ // TODO: Different box format used
+ if (_gameId == GID_MANIAC && _platform == Common::kPlatformC64)
+ return;
+
if (_version <= 2)
ptr = roomptr + *(roomptr + 0x15);
else