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 _numNewNames = _fileHandle.readUint32LE(); // 100
_numFlObject = _fileHandle.readUint32LE(); // 128 _numFlObject = _fileHandle.readUint32LE(); // 128
_numInventory = _fileHandle.readUint32LE(); // 80 _numInventory = _fileHandle.readUint32LE(); // 80
_numStrings = _fileHandle.readUint32LE(); // 200 _numArray = _fileHandle.readUint32LE(); // 200
_numVerbs = _fileHandle.readUint32LE(); // 50 _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); _objectRoomTable = (byte *)calloc(_numGlobalObjects, 1);
_numGlobalScripts = 2000; _numGlobalScripts = 2000;

View file

@ -380,7 +380,6 @@ public:
int _numInventory, _numRooms, _numScripts, _numSounds; int _numInventory, _numRooms, _numScripts, _numSounds;
int _numCharsets, _numCostumes, _numNewNames, _numGlobalScripts; int _numCharsets, _numCostumes, _numNewNames, _numGlobalScripts;
int NUM_ACTORS; int NUM_ACTORS;
int _numStrings;
char *_audioNames; char *_audioNames;
int32 _numAudioNames; int32 _numAudioNames;