diff options
author | Filippos Karapetis | 2010-08-22 23:11:55 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-08-22 23:11:55 +0000 |
commit | 11d5f5ac06679c4a6feb5faeb3a52179f974c520 (patch) | |
tree | 6e2bbd8da8689c3848cf73335672489b2f20e185 /engines/sci | |
parent | c8005dfb75d07ecc3db98562263c7b96feb19638 (diff) | |
download | scummvm-rg350-11d5f5ac06679c4a6feb5faeb3a52179f974c520.tar.gz scummvm-rg350-11d5f5ac06679c4a6feb5faeb3a52179f974c520.tar.bz2 scummvm-rg350-11d5f5ac06679c4a6feb5faeb3a52179f974c520.zip |
SCI: Fixed bug #3050856 - "SQ3 : Crash at intro"
svn-id: r52289
Diffstat (limited to 'engines/sci')
-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 3f3b4933cd..95759549c3 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -413,6 +413,7 @@ const SciWorkaroundEntry kUnLoad_workarounds[] = { { GID_LSL6HIRES, 130, 130, 0, "recruitLarryScr", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // during intro, a 3rd parameter is passed by accident { GID_PQ3, 877, 998, 0, "View", "delete", -1, 0, { WORKAROUND_IGNORE, 0 } }, // when getting run over on the freeway, the reference is invalid { 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_SQ3, 2, 998, 0, "View", "delete", -1, 0, { WORKAROUND_IGNORE, 0 } }, // clicking the mouse button during the intro, after the escape pod gets pulled into the garbage freighter, the reference is invalid - bug #3050856 SCI_WORKAROUNDENTRY_TERMINATOR }; |