diff options
author | Matthew Hoops | 2010-07-26 23:38:17 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-07-26 23:38:17 +0000 |
commit | 04d2ed5a7f74f58683cdc8e3d0d23d33d8410973 (patch) | |
tree | 58a4e18d365da8e321768a8b1262e8c6446110b3 /engines/sci/engine | |
parent | a27f30fa15db7def6c5e6d44703427254baec4ae (diff) | |
download | scummvm-rg350-04d2ed5a7f74f58683cdc8e3d0d23d33d8410973.tar.gz scummvm-rg350-04d2ed5a7f74f58683cdc8e3d0d23d33d8410973.tar.bz2 scummvm-rg350-04d2ed5a7f74f58683cdc8e3d0d23d33d8410973.zip |
SCI: Add workarounds for the LB2 demo
svn-id: r51336
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 812030cafd..32328ec1b2 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -214,6 +214,11 @@ 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_LAURABOW2, 1, 1, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: during the intro, a 3rd parameter is passed by accident + { GID_LAURABOW2, 2, 2, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: during the intro, a 3rd parameter is passed by accident + { GID_LAURABOW2, 4, 4, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: inside the museum, a 3rd parameter is passed by accident + { GID_LAURABOW2, 6, 6, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: after the murder, a 3rd parameter is passed by accident + { GID_LAURABOW2, 7, 7, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: after the logo is shown, a 3rd parameter is passed by accident SCI_WORKAROUNDENTRY_TERMINATOR }; |