aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-11-06 06:18:19 +0000
committerTravis Howell2005-11-06 06:18:19 +0000
commitf21a7e44f20751159e60a7bdeee16e6e0d66fb26 (patch)
treea26600f836687e0256e13d704f48393b86ce9288 /scumm
parent25794c23e201e119134ebbd2bcc5236d8edc77ca (diff)
downloadscummvm-rg350-f21a7e44f20751159e60a7bdeee16e6e0d66fb26.tar.gz
scummvm-rg350-f21a7e44f20751159e60a7bdeee16e6e0d66fb26.tar.bz2
scummvm-rg350-f21a7e44f20751159e60a7bdeee16e6e0d66fb26.zip
Fix regression, must not be an int16.
svn-id: r19481
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v100he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp
index 4f2835395c..49763c31c9 100644
--- a/scumm/script_v100he.cpp
+++ b/scumm/script_v100he.cpp
@@ -2268,7 +2268,7 @@ void ScummEngine_v100he::o100_wait() {
}
void ScummEngine_v100he::o100_writeFile() {
- int16 resID = pop();
+ int resID = pop();
int slot = pop();
byte subOp = fetchScriptByte();