diff options
author | Martin Kiewitz | 2010-07-26 15:43:39 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-26 15:43:39 +0000 |
commit | f5f8d8580484882e07d716f04c9c4f06ff75e740 (patch) | |
tree | c97e6c0fea44639e12ced68de03566c30d4aba34 | |
parent | faf0d5c2e31bb015ec9c6c8a5a68d761ad39e549 (diff) | |
download | scummvm-rg350-f5f8d8580484882e07d716f04c9c4f06ff75e740.tar.gz scummvm-rg350-f5f8d8580484882e07d716f04c9c4f06ff75e740.tar.bz2 scummvm-rg350-f5f8d8580484882e07d716f04c9c4f06ff75e740.zip |
SCI: forgot one workaround for r51319
svn-id: r51320
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index ce706d17e5..ce1891ae26 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -149,8 +149,9 @@ const SciWorkaroundEntry kGraphDrawLine_workarounds[] = { // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kGraphSaveBox_workarounds[] = { { GID_CASTLEBRAIN, 420, 427, 0, "alienIcon", "select", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // when selecting a card during the alien card game, gets called with 1 extra parameter - { GID_ISLANDBRAIN, 290, 291, 0, "downElevator", "changeState",0x201f, 0, { WORKAROUND_STILLCALL, 0 } }, // when testing in the elevator puzzle, gets called with 1 argument less - 15 is on stack - { GID_ISLANDBRAIN, 290, 291, 0, "correctElevator", "changeState",0x201f, 0, { WORKAROUND_STILLCALL, 0 } }, // see above + { GID_ISLANDBRAIN, 290, 291, 0, "upElevator", "changeState",0x201f, 0, { WORKAROUND_STILLCALL, 0 } }, // when testing in the elevator puzzle, gets called with 1 argument less - 15 is on stack + { GID_ISLANDBRAIN, 290, 291, 0, "downElevator", "changeState",0x201f, 0, { WORKAROUND_STILLCALL, 0 } }, // see above + { GID_ISLANDBRAIN, 290, 291, 0, "correctElevator", "changeState",0x201f, 0, { WORKAROUND_STILLCALL, 0 } }, // see above (when testing the correct solution) SCI_WORKAROUNDENTRY_TERMINATOR }; |