diff options
author | Colin Snover | 2016-10-15 19:28:42 -0500 |
---|---|---|
committer | Colin Snover | 2016-10-15 19:29:00 -0500 |
commit | 06d58c91b9a0e6f513c0ac2dcd62968abb6ffc86 (patch) | |
tree | 0a9b6eaa82fe429f3847765997dff9f28b6b1827 | |
parent | f35fafa52569abac058ffb1f7f2e2806919c43eb (diff) | |
download | scummvm-rg350-06d58c91b9a0e6f513c0ac2dcd62968abb6ffc86.tar.gz scummvm-rg350-06d58c91b9a0e6f513c0ac2dcd62968abb6ffc86.tar.bz2 scummvm-rg350-06d58c91b9a0e6f513c0ac2dcd62968abb6ffc86.zip |
SCI32: Fix crash in LSL6hires ending
Fixes Trac#9613.
-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 4c0fee49c5..0531517124 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -788,6 +788,7 @@ const SciWorkaroundEntry kUnLoad_workarounds[] = { { GID_LAURABOW2, -1, -1, 0, "sCartoon", "changeState", NULL, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: during the intro, a 3rd parameter is passed by accident - bug #4966 { GID_LSL6, 130, 130, 0, "recruitLarryScr", "changeState", NULL, 0, { WORKAROUND_IGNORE, 0 } }, // during intro, a 3rd parameter is passed by accident { GID_LSL6, 740, 740, 0, "showCartoon", "changeState", NULL, 0, { WORKAROUND_IGNORE, 0 } }, // during ending, 4 additional parameters are passed by accident + { GID_LSL6HIRES, 740, 740, 0, "showCartoon", "changeState", NULL, 0, { WORKAROUND_IGNORE, 0 } }, // during ending, multiple additional parameters are passed by accident { GID_LSL6HIRES, 130, 130, 0, "recruitLarryScr", "changeState", NULL, 0, { WORKAROUND_IGNORE, 0 } }, // during intro, a 3rd parameter is passed by accident { GID_SQ1, 43, 303, 0, "slotGuy", "dispose", NULL, 0, { WORKAROUND_IGNORE, 0 } }, // when leaving ulence flats bar, parameter 1 is not passed - script error { GID_QFG4, -1, 110, 0, "dreamer", "dispose", NULL, 0, { WORKAROUND_IGNORE, 0 } }, // during the dream sequence, a 3rd parameter is passed by accident |