diff options
-rw-r--r-- | scumm/resource.cpp | 6 | ||||
-rw-r--r-- | scumm/scumm.h | 1 |
2 files changed, 1 insertions, 6 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index e15a0ab8ca..efd3124a75 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -1534,13 +1534,9 @@ void Scumm::readMAXS() _numNewNames = _fileHandle.readUint32LE(); // 100 _numFlObject = _fileHandle.readUint32LE(); // 128 _numInventory = _fileHandle.readUint32LE(); // 80 - _numStrings = _fileHandle.readUint32LE(); // 200 + _numArray = _fileHandle.readUint32LE(); // 200 _numVerbs = _fileHandle.readUint32LE(); // 50 - // FIXME - uhm... COMI seems to have an ARRY with 143 entries, but - // indeed _numArray gets set to 50 ?!? - _numArray = 150; - _objectRoomTable = (byte *)calloc(_numGlobalObjects, 1); _numGlobalScripts = 2000; diff --git a/scumm/scumm.h b/scumm/scumm.h index d92310e170..b6976390d0 100644 --- a/scumm/scumm.h +++ b/scumm/scumm.h @@ -380,7 +380,6 @@ public: int _numInventory, _numRooms, _numScripts, _numSounds; int _numCharsets, _numCostumes, _numNewNames, _numGlobalScripts; int NUM_ACTORS; - int _numStrings; char *_audioNames; int32 _numAudioNames; |