aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-08-29 02:45:38 +0000
committerJonathan Gray2003-08-29 02:45:38 +0000
commite32f17d803ccdd409758e21d1473d4d51389881a (patch)
tree4f582828f8515c61bc2707db37867197bb33fe47 /scumm/resource.cpp
parent176803cb90b495457d51dd4dea6ed7004462ad22 (diff)
downloadscummvm-rg350-e32f17d803ccdd409758e21d1473d4d51389881a.tar.gz
scummvm-rg350-e32f17d803ccdd409758e21d1473d4d51389881a.tar.bz2
scummvm-rg350-e32f17d803ccdd409758e21d1473d4d51389881a.zip
don't try to read objectRoomTable for HEv7 games right now
svn-id: r9898
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r--scumm/resource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 4c8a8c4f1c..83151e1b9a 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -341,8 +341,8 @@ void Scumm::readIndexFile() {
}
if (_features & GF_AFTER_HEV7) {
// _objectRoomTable
- //_fileHandle.seek(num * 4, SEEK_CUR);
- _fileHandle.read(_objectRoomTable, num * 4);
+ _fileHandle.seek(num * 4, SEEK_CUR);
+ //_fileHandle.read(_objectRoomTable, num * 4);
}
}