diff options
author | Travis Howell | 2005-09-14 12:11:28 +0000 |
---|---|---|
committer | Travis Howell | 2005-09-14 12:11:28 +0000 |
commit | cfa4ccf2e783d1cad88d97809e3596ca17069056 (patch) | |
tree | e7a8468d8e53b1ef1f5ac716f4777d123b7bea2b /scumm | |
parent | a5b1a8a2b5ce723277e04948ebe986c11f8023a6 (diff) | |
download | scummvm-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.cpp | 4 |
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 |