diff options
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r-- | scumm/resource.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index 85b5bdc6bc..59bfca15ed 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -1272,6 +1272,8 @@ void ScummEngine::allocateArrays() { _bitVars = (byte *)calloc(_numBitVariables >> 3, 1); if (_heversion >= 60) { _arraySlot = (byte *)calloc(_numArray, 1); + } + if (_heversion >= 70) { _storedFlObjects = (ObjectData *)calloc(100, sizeof(ObjectData)); } |