diff options
author | Matthew Hoops | 2011-02-16 13:44:34 -0500 |
---|---|---|
committer | Matthew Hoops | 2011-02-16 14:24:39 -0500 |
commit | e19d6a2462c559577a1009f20e1fc6bc7a7ba730 (patch) | |
tree | 49de202bc78f6dfec04c9cdbbcf035e52caf1273 /engines/sci | |
parent | 758e4958724bf557013e587789425bed0bc1a6a5 (diff) | |
download | scummvm-rg350-e19d6a2462c559577a1009f20e1fc6bc7a7ba730.tar.gz scummvm-rg350-e19d6a2462c559577a1009f20e1fc6bc7a7ba730.tar.bz2 scummvm-rg350-e19d6a2462c559577a1009f20e1fc6bc7a7ba730.zip |
SCI: Add workaround for uninitialized read in KQ5 FM Towns
Thanks to alexbevi
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index d1dd5f606d..faf7662ad6 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -136,6 +136,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { // ^^ shouldn't be needed anymore, we got a script patch instead (kq5PatchCdHarpyVolume) { GID_KQ5, 25, 25, 0, "rm025", "doit", -1, 0, { WORKAROUND_FAKE, 0 } }, // inside witch forest, when going to the room where the walking rock is { GID_KQ5, 55, 55, 0, "helpScript", "doit", -1, 0, { WORKAROUND_FAKE, 0 } }, // when giving the tambourine to the monster in the labyrinth (only happens at one of the locations) - bug #3041262 + { GID_KQ5, -1, 755, 0, "gcWin", "open", -1, -1, { WORKAROUND_FAKE, 0 } }, // when entering control menu in the FM-Towns version { GID_KQ6, -1, 30, 0, "rats", "changeState", -1, -1, { WORKAROUND_FAKE, 0 } }, // rats in the catacombs (temps 1 - 5) - bugs #3034597, #3035495, #3035824 { GID_KQ6, 210, 210, 0, "rm210", "scriptCheck", -1, 0, { WORKAROUND_FAKE, 1 } }, // using inventory in that room - bug #3034565 { GID_KQ6, 500, 500, 0, "rm500", "init", -1, 0, { WORKAROUND_FAKE, 0 } }, // going to island of the beast |