diff options
author | Filippos Karapetis | 2010-07-27 08:08:04 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-07-27 08:08:04 +0000 |
commit | 8312feec502255b329f827edb46b3f2998c4a631 (patch) | |
tree | 48e7af7134f8eb2c116d2198b4b6aa04c72800c9 | |
parent | 03fe34df73286046fbb16d9ebbfc6580e206d914 (diff) | |
download | scummvm-rg350-8312feec502255b329f827edb46b3f2998c4a631.tar.gz scummvm-rg350-8312feec502255b329f827edb46b3f2998c4a631.tar.bz2 scummvm-rg350-8312feec502255b329f827edb46b3f2998c4a631.zip |
SCI: Fixed bug #3034567, "KQ6CD: Crash on taking piece of paper from spider web"
svn-id: r51347
-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 290f980f58..eb13fd06a4 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -134,6 +134,7 @@ const SciWorkaroundEntry kDisposeScript_workarounds[] = { const SciWorkaroundEntry kDoSoundFade_workarounds[] = { { GID_KQ1, -1, 989, 0, "gameSound", "fade", -1, 0, { WORKAROUND_IGNORE, 0 } }, // gets called in several scenes (e.g. graham cracker) with 0:0 { GID_KQ6, 105, 989, 0, "globalSound", "fade", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // floppy: during intro, parameter 4 is an object + { GID_KQ6, 460, 989, 0, "globalSound2", "fade", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // after pulling the black widow's web on the isle of wonder, parameter 4 is an object SCI_WORKAROUNDENTRY_TERMINATOR }; |