aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.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/scumm.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/scumm.h')
-rw-r--r--scumm/scumm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index f637c2e5e8..c686f9b505 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -615,7 +615,7 @@ protected:
public:
void runScript(int script, bool freezeResistant, bool recursive, int *lvarptr, int cycle = 0);
void stopScript(int script);
- void nukeArrays(byte script);
+ void nukeArrays(byte scriptSlot);
protected:
void runObjectScript(int script, int entry, bool freezeResistant, bool recursive, int *vars, int slot = -1, int cycle = 0);