diff options
author | Travis Howell | 2004-09-20 09:16:49 +0000 |
---|---|---|
committer | Travis Howell | 2004-09-20 09:16:49 +0000 |
commit | 1d1442553b9edc13eb5d2ea1f5726ae3dd520ffd (patch) | |
tree | f93a4553d8d6fdf325cfc42b1c59ab4c4f52ce47 | |
parent | e9a9a6410927b1cc749335d19492ed617efcb5cd (diff) | |
download | scummvm-rg350-1d1442553b9edc13eb5d2ea1f5726ae3dd520ffd.tar.gz scummvm-rg350-1d1442553b9edc13eb5d2ea1f5726ae3dd520ffd.tar.bz2 scummvm-rg350-1d1442553b9edc13eb5d2ea1f5726ae3dd520ffd.zip |
Add case for kindddemo.
svn-id: r15199
-rw-r--r-- | scumm/script_v90he.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp index 1e74c74c1f..0e1d30a431 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -457,7 +457,7 @@ void ScummEngine_v90he::o90_unknown1C() { pop(); break; case 8: - _wizFlag = pop(); + _wizFlag |= pop(); break; case 10: { @@ -499,6 +499,10 @@ void ScummEngine_v90he::o90_unknown1C() { break; case 171: // HE99+ break; + case 200: + _wizFlag |= 64; + _wizY1 = _wizX1 = pop(); + break; case 209: if (_fullRedraw) { assert(_wizImagesNum < ARRAYSIZE(_wizImages)); |