diff options
author | Filippos Karapetis | 2012-03-31 05:53:29 +0300 |
---|---|---|
committer | Filippos Karapetis | 2012-03-31 05:53:29 +0300 |
commit | 21e8f2f44135f32fa2e448f98da3fa05afef8880 (patch) | |
tree | 2f7a427ead97fd9b783eaefe43cc973e494f6d97 /engines/sci | |
parent | 5bbfd008b6f6d625f33a6924dec99482eac9aae8 (diff) | |
download | scummvm-rg350-21e8f2f44135f32fa2e448f98da3fa05afef8880.tar.gz scummvm-rg350-21e8f2f44135f32fa2e448f98da3fa05afef8880.tar.bz2 scummvm-rg350-21e8f2f44135f32fa2e448f98da3fa05afef8880.zip |
SCI: Fix workaround for bug #3513207
The associated call contains too few parameters, thus it shouldn't be made
at all
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 23d65804a5..c31a2dc9dc 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -252,7 +252,7 @@ const SciWorkaroundEntry kDoSoundFade_workarounds[] = { const SciWorkaroundEntry kGetAngle_workarounds[] = { { GID_FANMADE, 516, 992, 0, "Motion", "init", -1, 0, { WORKAROUND_IGNORE, 0 } }, // The Legend of the Lost Jewel Demo (fan made): called with third/fourth parameters as objects { GID_KQ6, -1, 752, 0, "throwDazzle", "changeState", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // room 740/790 after the Genie is exposed in the Palace (short and long ending), it starts shooting lightning bolts around. An extra 5th parameter is passed - bug #3034610 & #3041734 - { GID_SQ1, -1, 927, 0, "PAvoider", "doit", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // room 47 Roger moving around Pilot Droid. Only a single parameter is passed - bug #3513207 + { GID_SQ1, 47, 927, 0, "PAvoider", "doit", -1, 0, { WORKAROUND_IGNORE, 0 } }, // room 47 Roger moving around Pilot Droid. Only a single parameter is passed - bug #3513207 SCI_WORKAROUNDENTRY_TERMINATOR }; |