diff options
| author | Travis Howell | 2005-04-05 11:06:03 +0000 |
|---|---|---|
| committer | Travis Howell | 2005-04-05 11:06:03 +0000 |
| commit | aeec229615ad2afb36ce7078448f2b1d560ca51f (patch) | |
| tree | fcb9de99e56c5814ec2049817af17553ab3dd3cc /scumm/intern.h | |
| parent | 23e419969975d0da935498bfbb255448be7b6c2a (diff) | |
| download | scummvm-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.h | 2 |
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); |
