changed numString to numArray

svn-id: r6078
This commit is contained in:
Paweł Kołodziejski 2002-12-23 19:03:08 +00:00
parent 897fc9a91b
commit 44bfa413f9
2 changed files with 1 additions and 6 deletions

View file

@ -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;