diff options
author | Filippos Karapetis | 2012-08-21 03:29:55 +0300 |
---|---|---|
committer | Filippos Karapetis | 2012-08-21 03:32:21 +0300 |
commit | 1a61056b06dc4ea5fe534f6ff13eb4e281bb9c03 (patch) | |
tree | 6194f552754989d7cf82d8a9e0b7aa847de3b54d /engines | |
parent | 9568b78babdbdf350fd6c47b261c3f21902c31fc (diff) | |
download | scummvm-rg350-1a61056b06dc4ea5fe534f6ff13eb4e281bb9c03.tar.gz scummvm-rg350-1a61056b06dc4ea5fe534f6ff13eb4e281bb9c03.tar.bz2 scummvm-rg350-1a61056b06dc4ea5fe534f6ff13eb4e281bb9c03.zip |
SCI: Extend a workaround for the dream sequence in QFG4
Diffstat (limited to 'engines')
-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 a4c2355e8f..9fa0368784 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -399,7 +399,7 @@ const SciWorkaroundEntry kUnLoad_workarounds[] = { { GID_LSL6, 740, 740, 0, "showCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // during ending, 4 additional parameters are passed by accident { GID_LSL6HIRES, 130, 130, 0, "recruitLarryScr", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // during intro, a 3rd parameter is passed by accident { GID_SQ1, 43, 303, 0, "slotGuy", "dispose", -1, 0, { WORKAROUND_IGNORE, 0 } }, // when leaving ulence flats bar, parameter 1 is not passed - script error - { GID_QFG4, 770, 110, 0, "dreamer", "dispose", -1, 0, { WORKAROUND_IGNORE, 0 } }, // during the dream sequence, a 3rd parameter is passed by accident + { GID_QFG4, -1, 110, 0, "dreamer", "dispose", -1, 0, { WORKAROUND_IGNORE, 0 } }, // during the dream sequence, a 3rd parameter is passed by accident SCI_WORKAROUNDENTRY_TERMINATOR }; |