aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-09-14 12:55:48 +0000
committerTravis Howell2004-09-14 12:55:48 +0000
commit8e1d3aa939d76cd91cbeb5544674da627ffb6428 (patch)
tree1b8233a9dac7ac5dc062c355fcaf96c6bbf5c40e /scumm
parent6522c060fd26aafbd3cd9482b93db9154125642f (diff)
downloadscummvm-rg350-8e1d3aa939d76cd91cbeb5544674da627ffb6428.tar.gz
scummvm-rg350-8e1d3aa939d76cd91cbeb5544674da627ffb6428.tar.bz2
scummvm-rg350-8e1d3aa939d76cd91cbeb5544674da627ffb6428.zip
Avoid warning
svn-id: r15117
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v80he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp
index 6712e5b4ee..e4029b847e 100644
--- a/scumm/script_v80he.cpp
+++ b/scumm/script_v80he.cpp
@@ -428,7 +428,7 @@ void ScummEngine_v80he::o80_unknown4A() {
if (slot >= _numArray)
error("o80_unknown4A(%d): array slot out of range", slot);
- _arraySlot[slot] = -1;
+ _arraySlot[slot] = 0xFFFFFFFF;
}
void ScummEngine_v80he::o80_readConfigFile() {