diff options
author | Martin Kiewitz | 2010-07-01 22:09:19 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-01 22:09:19 +0000 |
commit | 4c04375c8c39a3be660096d66d9d31dc5dd93a93 (patch) | |
tree | 94b1fb9687d726c9fb6fb7783d1f1260c001d86d /engines/sci/engine | |
parent | d5e037e703dfa5ab64bb390e31f817deb85cfb02 (diff) | |
download | scummvm-rg350-4c04375c8c39a3be660096d66d9d31dc5dd93a93.tar.gz scummvm-rg350-4c04375c8c39a3be660096d66d9d31dc5dd93a93.tar.bz2 scummvm-rg350-4c04375c8c39a3be660096d66d9d31dc5dd93a93.zip |
SCI: added another workaround for uninit temps, this time for jones/cd
svn-id: r50574
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/vm.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index 49049585ee..4e26839d16 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -344,8 +344,9 @@ static const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_LAURABOW2, 24, 0, "gcWin", "open", -1, 5, { 0, 0xf } }, // is used as priority for game menu { GID_FREDDYPHARKAS, 24, 0, "gcWin", "open", -1, 5, { 0, 0xf } }, // is used as priority for game menu { GID_FREDDYPHARKAS, 31, 0, "quitWin", "open", -1, 5, { 0, 0xf } }, // is used as priority for game menu - { GID_JONES, 255, 0, "", "export 0", -1, 13, { 0, 0 } }, // called when the game starts - { GID_JONES, 255, 0, "", "export 0", -1, 14, { 0, 0 } }, // called when the game starts + { GID_JONES, 232, 0, "weekendText", "draw", 0x3d3, 0, { 0, 0 } }, // jones/cd only - gets called during the game + { GID_JONES, 255, 0, "", "export 0", -1, 13, { 0, 0 } }, // jones/ega&vga only - called when the game starts + { GID_JONES, 255, 0, "", "export 0", -1, 14, { 0, 0 } }, // jones/ega&vga only - called when the game starts { 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, 928, 1, "Narrator", "startText", -1, 0, { 0, 0 } }, // used by various objects that are even translated in foreign versions, that's why we use the base-class |