aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray2004-08-23 08:35:35 +0000
committerJonathan Gray2004-08-23 08:35:35 +0000
commit5f3009d7d04cd818caa9fd8a4ace614fe4408be4 (patch)
tree9e9268ac9ea251c1eabb9807b10911a0160ab894
parent9d081a640ed8d664b8a08776d5df224499318e8c (diff)
downloadscummvm-rg350-5f3009d7d04cd818caa9fd8a4ace614fe4408be4.tar.gz
scummvm-rg350-5f3009d7d04cd818caa9fd8a4ace614fe4408be4.tar.bz2
scummvm-rg350-5f3009d7d04cd818caa9fd8a4ace614fe4408be4.zip
note existance of DISK index block found in f4-demo
svn-id: r14702
-rw-r--r--scumm/resource.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 2712fd04b7..99be45a34e 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -572,6 +572,11 @@ void ScummEngine::readIndexFile() {
debug(9, "found DIRM block, skipping");
break;
+ case MKID('DISK'):
+ _fileHandle.seek(itemsize - 8, SEEK_CUR);
+ warning("DISK index block not yet handled, skipping");
+ break;
+
case MKID('DIRI'): // Images?
// readResTypeList(rtImage, MKID('AWIZ'), "images");
num = _fileHandle.readUint16LE();