diff options
author | Max Horn | 2003-05-04 13:09:42 +0000 |
---|---|---|
committer | Max Horn | 2003-05-04 13:09:42 +0000 |
commit | 8700fa5ff641aec42af3eab397514fb05bc51530 (patch) | |
tree | 1ab9447935c2b4bb791ddf78928df1c386a8831b /scumm | |
parent | 34e5eaadd01572693a5fa49c755167ac9919007b (diff) | |
download | scummvm-rg350-8700fa5ff641aec42af3eab397514fb05bc51530.tar.gz scummvm-rg350-8700fa5ff641aec42af3eab397514fb05bc51530.tar.bz2 scummvm-rg350-8700fa5ff641aec42af3eab397514fb05bc51530.zip |
fixed roomobj dumping
svn-id: r7316
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/object.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scumm/object.cpp b/scumm/object.cpp index 243b41f53f..8ef03152df 100644 --- a/scumm/object.cpp +++ b/scumm/object.cpp @@ -482,9 +482,7 @@ void Scumm::loadRoomObjects() { if (_dumpScripts) { char buf[32]; sprintf(buf, "roomobj-%d-", _roomResource); - if (_features & GF_AFTER_V8) - // TODO - maybe V8 is not the only that needs this? - ptr = findResource(MKID('VERB'), ptr, 0); + ptr = findResource(MKID('VERB'), ptr, 0); dumpResource(buf, od->obj_nr, ptr); } |