aboutsummaryrefslogtreecommitdiff
path: root/scumm/intern.h
diff options
context:
space:
mode:
authorTravis Howell2005-04-05 11:06:03 +0000
committerTravis Howell2005-04-05 11:06:03 +0000
commitaeec229615ad2afb36ce7078448f2b1d560ca51f (patch)
treefcb9de99e56c5814ec2049817af17553ab3dd3cc /scumm/intern.h
parent23e419969975d0da935498bfbb255448be7b6c2a (diff)
downloadscummvm-rg350-aeec229615ad2afb36ce7078448f2b1d560ca51f.tar.gz
scummvm-rg350-aeec229615ad2afb36ce7078448f2b1d560ca51f.tar.bz2
scummvm-rg350-aeec229615ad2afb36ce7078448f2b1d560ca51f.zip
getScriptSlot() must start from slot 1, required for nukeArrays() in HE games.
svn-id: r17383
Diffstat (limited to 'scumm/intern.h')
-rw-r--r--scumm/intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index 672f35c078..ee34483efd 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -630,7 +630,7 @@ protected:
virtual void executeOpcode(byte i);
virtual const char *getOpcodeDesc(byte i);
- void localizeArray(int slot, byte script);
+ void localizeArray(int slot, byte scriptSlot);
void redimArray(int arrayId, int newX, int newY, int d);
int readFileToArray(int slot, int32 size);
void writeFileFromArray(int slot, int resID);