diff options
author | Filippos Karapetis | 2013-05-31 05:59:25 +0300 |
---|---|---|
committer | Filippos Karapetis | 2013-05-31 05:59:25 +0300 |
commit | f38c7d76efe277c9dc3b48ab666abcbebeb73373 (patch) | |
tree | 61b3bce85b31284f1024f4f85e78911a78bdfbd7 /engines | |
parent | b16f2d8405bab54a891325f0c6dec156f6006b1a (diff) | |
download | scummvm-rg350-f38c7d76efe277c9dc3b48ab666abcbebeb73373.tar.gz scummvm-rg350-f38c7d76efe277c9dc3b48ab666abcbebeb73373.tar.bz2 scummvm-rg350-f38c7d76efe277c9dc3b48ab666abcbebeb73373.zip |
SCI: Add a workaround for a script bug in SQ5, room 800 - bug #3614145
Diffstat (limited to 'engines')
-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 6af6326042..6f0b34b457 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -249,6 +249,7 @@ const SciWorkaroundEntry kDoSoundFade_workarounds[] = { { 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 - bug #3034567 { GID_QFG4, -1, 64989, 0, "longSong", "fade", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // CD version: many places, parameter 4 is an object (longSong) + { GID_SQ5, 800, 989, 0, "sq5Music1", "fade", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // when cutting the wrong part of Goliath with the laser - bug #3614145 SCI_WORKAROUNDENTRY_TERMINATOR }; |