diff options
author | Martin Kiewitz | 2010-07-12 18:22:24 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-12 18:22:24 +0000 |
commit | 535dbb7f59afe1c0d4576ada41c73cf07632b133 (patch) | |
tree | 7db04f01ed3561248851031926914a12f3b36c81 /engines | |
parent | 8364b0bd29ddcf68cfc9ee53d09eb326703347e9 (diff) | |
download | scummvm-rg350-535dbb7f59afe1c0d4576ada41c73cf07632b133.tar.gz scummvm-rg350-535dbb7f59afe1c0d4576ada41c73cf07632b133.tar.bz2 scummvm-rg350-535dbb7f59afe1c0d4576ada41c73cf07632b133.zip |
SCI: fixing typo
svn-id: r50827
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/kernel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp index 6eedc06023..beb1d3ce35 100644 --- a/engines/sci/engine/kernel.cpp +++ b/engines/sci/engine/kernel.cpp @@ -286,7 +286,7 @@ static const SciWorkaroundEntry kGraphFillBoxAny_workarounds[] = { // gameID, scriptNr,lvl, object-name, method-name, call, index, replace static const SciWorkaroundEntry kUnLoad_workarounds[] = { { GID_LSL6, 130, 0, "recruitLarryScr", "changeState", -1, 0, { 1, 0 } }, // during intro, a 3rd parameter is passed by accident - { GID_LSL6, 740, 0, "showCartoon", "changeState", -1, 0, { 1, 0 } }, // during end, intro, a 4 additional parameters are passed by accident + { GID_LSL6, 740, 0, "showCartoon", "changeState", -1, 0, { 1, 0 } }, // during ending, 4 additional parameters are passed by accident { GID_SQ1, 303, 0, "slotGuy", "dispose", -1, 0, { 1, 0 } }, // when leaving ulence flats bar, parameter 1 is not passed - script error SCI_WORKAROUNDENTRY_TERMINATOR }; |