diff options
author | Martin Kiewitz | 2010-07-22 14:43:19 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-22 14:43:19 +0000 |
commit | 6c41ca440509d2f965c71d8fcd0502b4d042d0a6 (patch) | |
tree | ed53a1f7602ebbe0067c50021bf661e7ded50006 /engines/sci/engine/workarounds.cpp | |
parent | c1ad4a1110e7f5a9b9e8e88015052cf51abda1a3 (diff) | |
download | scummvm-rg350-6c41ca440509d2f965c71d8fcd0502b4d042d0a6.tar.gz scummvm-rg350-6c41ca440509d2f965c71d8fcd0502b4d042d0a6.tar.bz2 scummvm-rg350-6c41ca440509d2f965c71d8fcd0502b4d042d0a6.zip |
SCI: Adding workaround for sq4 room 411
kGraph(RestoreBox) is called with an additional parameter
svn-id: r51145
Diffstat (limited to 'engines/sci/engine/workarounds.cpp')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index f2b499fc7a..fcad97f7b9 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -140,6 +140,12 @@ const SciWorkaroundEntry kGraphFillBoxAny_workarounds[] = { }; // gameID, room,script,lvl, object-name, method-name, call,index, workaround +const SciWorkaroundEntry kGraphRedrawBox_workarounds[] = { + { GID_SQ4, 411, 411, 0, "swimAndShoot", "changeState", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // skateOrama when "swimming" in the air - accidental additional parameter specified + SCI_WORKAROUNDENTRY_TERMINATOR +}; + +// gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kSetPort_workarounds[] = { { GID_LSL6, 740, 740, 0, "rm740", "drawPic", -1, 0, { WORKAROUND_IGNORE, 0 } }, // ending scene, is called with additional 3 (!) parameters SCI_WORKAROUNDENTRY_TERMINATOR |