diff options
author | Travis Howell | 2005-11-06 06:18:19 +0000 |
---|---|---|
committer | Travis Howell | 2005-11-06 06:18:19 +0000 |
commit | f21a7e44f20751159e60a7bdeee16e6e0d66fb26 (patch) | |
tree | a26600f836687e0256e13d704f48393b86ce9288 /scumm | |
parent | 25794c23e201e119134ebbd2bcc5236d8edc77ca (diff) | |
download | scummvm-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.cpp | 2 |
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(); |