aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-26 01:46:36 +0000
committerMax Horn2002-12-26 01:46:36 +0000
commit7e7be4f6f3911c428449c727caa06a550fec6e3a (patch)
tree0542fe03bba3f46040b3042bcb45b8e211bb53d5 /scumm/resource.cpp
parentea831a2fd487a23099d2bda91cf548fdec37d726 (diff)
downloadscummvm-rg350-7e7be4f6f3911c428449c727caa06a550fec6e3a.tar.gz
scummvm-rg350-7e7be4f6f3911c428449c727caa06a550fec6e3a.tar.bz2
scummvm-rg350-7e7be4f6f3911c428449c727caa06a550fec6e3a.zip
32 bit variables storage
svn-id: r6161
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r--scumm/resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 6c3f6dd775..ce34b10936 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -1638,7 +1638,7 @@ void Scumm::allocateArrays()
_inventory = (uint16 *)calloc(_numInventory, sizeof(uint16));
_verbs = (VerbSlot *)calloc(_numVerbs, sizeof(VerbSlot));
_objs = (ObjectData *)calloc(_numLocalObjects, sizeof(ObjectData));
- _vars = (int16 *)calloc(_numVariables, sizeof(int16));
+ _vars = (int32 *)calloc(_numVariables, sizeof(int32));
_bitVars = (byte *)calloc(_numBitVariables >> 3, 1);
allocResTypeData(rtCostume, (_features & GF_NEW_COSTUMES) ? MKID('AKOS') : MKID('COST'),