diff options
author | Martin Kiewitz | 2010-07-16 14:16:47 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-16 14:16:47 +0000 |
commit | 60363b8a53be77e56b23bca87926d07d3dc56ff5 (patch) | |
tree | 71d160fbc722954295b27ff29fbe14d23fda5977 /engines | |
parent | 3ceb02f08ac46537ba3bbc092b5b15f2390738c8 (diff) | |
download | scummvm-rg350-60363b8a53be77e56b23bca87926d07d3dc56ff5.tar.gz scummvm-rg350-60363b8a53be77e56b23bca87926d07d3dc56ff5.tar.bz2 scummvm-rg350-60363b8a53be77e56b23bca87926d07d3dc56ff5.zip |
SCI: adding uninitialized workaround for lsl1 when playing at the casino
svn-id: r50938
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/vm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index 34f47adc4b..dd982c2c62 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -377,6 +377,7 @@ static const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_KQ6, 520, 0, "rm520", "init", -1, 0, { 0, 0 } }, // going to boiling water trap on beast isle { GID_KQ6, 903, 0, "controlWin", "open", -1, 4, { 0, 0 } }, // when opening the controls window (save, load etc) { GID_LAURABOW2, 24, 0, "gcWin", "open", -1, 5, { 0, 0xf } }, // is used as priority for game menu + { GID_LSL1, 250, 0, "increase", "handleEvent", -1, 2, { 0, 0 } }, // casino, playing game, increasing bet { GID_LSL1, 720, 0, "rm720", "init", -1, 0, { 0, 0 } }, // age check room { GID_LSL3, 997, 0, "TheMenuBar", "handleEvent", -1, 1, { 0, 0xf } }, // when setting volume the first time, this temp is used to set volume on entry (normally it would have been initialized to 's') { GID_LSL6, 85, 0, "washcloth", "doVerb", -1, 0, { 0, 0 } }, // washcloth in inventory |