diff options
author | Travis Howell | 2004-06-24 05:55:04 +0000 |
---|---|---|
committer | Travis Howell | 2004-06-24 05:55:04 +0000 |
commit | 974f3e64313be569ba2ad0f548ab4c0dc17f230a (patch) | |
tree | 0b2caa8fcf66d045a6ec63b547f9c3744f612638 /scumm | |
parent | 54e3e20b985a652b43f57d1769f6671fe526a979 (diff) | |
download | scummvm-rg350-974f3e64313be569ba2ad0f548ab4c0dc17f230a.tar.gz scummvm-rg350-974f3e64313be569ba2ad0f548ab4c0dc17f230a.tar.bz2 scummvm-rg350-974f3e64313be569ba2ad0f548ab4c0dc17f230a.zip |
Fix comi regression
svn-id: r14026
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index 5a9cd83ba8..11c48a20fd 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -632,7 +632,7 @@ int ScummEngine::loadResource(int type, int idx) { if (type == rtRoom) { if (_version == 8) fileOffs = 8; - if (_heversion >= 70) + else if (_heversion >= 70) fileOffs = _HEV7RoomIntOffsets[idx]; else fileOffs = 0; |