aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-23 16:17:23 +0000
committerMax Horn2002-12-23 16:17:23 +0000
commit7d052a26b0db3b5bbcce0d1fb997844e05e637f9 (patch)
tree65a15ebe03e811eec534ab57274833b071b7391e /scumm/resource.cpp
parentf86eaeaff9ae16c345f78fd240915e7109d98e19 (diff)
downloadscummvm-rg350-7d052a26b0db3b5bbcce0d1fb997844e05e637f9.tar.gz
scummvm-rg350-7d052a26b0db3b5bbcce0d1fb997844e05e637f9.tar.bz2
scummvm-rg350-7d052a26b0db3b5bbcce0d1fb997844e05e637f9.zip
don't be needlessly verbose; allow byte arrays in V8
svn-id: r6071
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r--scumm/resource.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 6224b95e35..e762c8201d 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -367,13 +367,10 @@ void Scumm::readArrayFromIndexFile()
int a, b, c;
if (_features & GF_AFTER_V8) {
- // FIXME - this is just a guess
while ((num = _fileHandle.readUint32LE()) != 0) {
a = _fileHandle.readUint32LE();
b = _fileHandle.readUint32LE();
-
- printf("Reading array (0x%08x,%d,%d) - (pos = 0x%08x)\n", num, a, b, _fileHandle.pos());
- defineArray(num, 0, a, b);
+ defineArray(num, 5, a, b);
}
} else {
while ((num = _fileHandle.readUint16LE()) != 0) {