diff options
author | David Turner | 2010-07-22 17:12:51 +0000 |
---|---|---|
committer | David Turner | 2010-07-22 17:12:51 +0000 |
commit | 756ab24f3203837f1101b995c90d1ebbdb4e54b2 (patch) | |
tree | f9105c47cce420f54a94048cdab2bd0fbd0dbcdb | |
parent | 529af0fc3e4e537d81c3baf445885d87d5dacab1 (diff) | |
download | scummvm-rg350-756ab24f3203837f1101b995c90d1ebbdb4e54b2.tar.gz scummvm-rg350-756ab24f3203837f1101b995c90d1ebbdb4e54b2.tar.bz2 scummvm-rg350-756ab24f3203837f1101b995c90d1ebbdb4e54b2.zip |
SCI: Added remaining workarounds to SQ4 Skate-o-rama area.
svn-id: r51151
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index f15390a9c3..f035baf4ed 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -141,6 +141,8 @@ const SciWorkaroundEntry kGraphFillBoxAny_workarounds[] = { // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kGraphRedrawBox_workarounds[] = { + { GID_SQ4, 405, 405, 0, "swimAfterEgo", "changeState", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // skateOrama when "swimming" in the air - accidental additional parameter specified + { GID_SQ4, 406, 406, 0, "swimAndShoot", "changeState", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // skateOrama when "swimming" in the air - accidental additional parameter specified { GID_SQ4, 410, 410, 0, "swimAfterEgo", "changeState", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // skateOrama when "swimming" in the air - accidental additional parameter specified { 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 |