aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorDavid Turner2010-07-22 23:54:19 +0000
committerDavid Turner2010-07-22 23:54:19 +0000
commita2f6fd976b09985ac5414e4665018f1b8cd7716e (patch)
tree907db33355a052622b8c41a416da6708a3f32268 /engines
parent4b2fca203e19b831b76a7d0ec0ee3c5235ed89ee (diff)
downloadscummvm-rg350-a2f6fd976b09985ac5414e4665018f1b8cd7716e.tar.gz
scummvm-rg350-a2f6fd976b09985ac5414e4665018f1b8cd7716e.tar.bz2
scummvm-rg350-a2f6fd976b09985ac5414e4665018f1b8cd7716e.zip
SCI: Added Workaround for SQ4CD Droid in Supercomputer Maze.
There are about 20 screens, but all screens seem to share the same script, 704, so have added a -1 general exception. svn-id: r51180
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/workarounds.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp
index 6e92e43e5e..743b7757ed 100644
--- a/engines/sci/engine/workarounds.cpp
+++ b/engines/sci/engine/workarounds.cpp
@@ -145,6 +145,7 @@ const SciWorkaroundEntry kGraphRedrawBox_workarounds[] = {
{ 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
+ { GID_SQ4, -1, 704, 0, "shootEgo", "changeState", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // When shot by Droid in Super Computer Maze (Rooms 500, 505, 510...) - accidental additional parameter specified
SCI_WORKAROUNDENTRY_TERMINATOR
};