diff options
author | Martin Kiewitz | 2010-08-13 20:08:57 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-08-13 20:08:57 +0000 |
commit | da543ce36c8d84b6c89ec6ef6ba980fb44eca33c (patch) | |
tree | bb4e9fdb98f6134e818a31005832262b1d3ac159 /engines/sci | |
parent | 6181241f576aa6aaa2b9e426a64d26297c5847e5 (diff) | |
download | scummvm-rg350-da543ce36c8d84b6c89ec6ef6ba980fb44eca33c.tar.gz scummvm-rg350-da543ce36c8d84b6c89ec6ef6ba980fb44eca33c.tar.bz2 scummvm-rg350-da543ce36c8d84b6c89ec6ef6ba980fb44eca33c.zip |
SCI: adding workaround for sq4/floppy
bug #3044046
svn-id: r52070
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 27b605f3a3..fe269df563 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -304,6 +304,7 @@ 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, "egoFollowed", "changeState", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // FLOPPY: when getting shot by the police - 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 |