diff options
author | Travis Howell | 2004-08-25 06:58:30 +0000 |
---|---|---|
committer | Travis Howell | 2004-08-25 06:58:30 +0000 |
commit | 4bdbd7969084e24bfb5f1c88d4802aa56582f91b (patch) | |
tree | dfe41cc8d8955c5b1f61fa3d4cb10d8ba01c4525 /scumm | |
parent | 68acd13ad496615083b0d0c6e8204d4eced76e53 (diff) | |
download | scummvm-rg350-4bdbd7969084e24bfb5f1c88d4802aa56582f91b.tar.gz scummvm-rg350-4bdbd7969084e24bfb5f1c88d4802aa56582f91b.tar.bz2 scummvm-rg350-4bdbd7969084e24bfb5f1c88d4802aa56582f91b.zip |
Don't skip arrayindex in HE 7.2 games
svn-id: r14741
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/resource.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index 8ddeda8879..e4ccec5053 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -533,8 +533,6 @@ void ScummEngine::readIndexFile() { _fileHandle.read(_objectStateTable, num); _fileHandle.read(_objectOwnerTable, num); _fileHandle.read(_objectRoomTable, num); - if (_heversion >= 72) - _fileHandle.seek(num, SEEK_CUR); } else { _fileHandle.read(_objectOwnerTable, num); for (i = 0; i < num; i++) { |