diff options
author | Filippos Karapetis | 2010-07-29 15:24:19 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-07-29 15:24:19 +0000 |
commit | 9b6c78a4fed90b5b9fa98e77994f74645ee5fb47 (patch) | |
tree | cdba851564e352cf81ff23bd231324381a6cb006 | |
parent | a113986dc29ec6a6d53d48af7e06212a42be0c46 (diff) | |
download | scummvm-rg350-9b6c78a4fed90b5b9fa98e77994f74645ee5fb47.tar.gz scummvm-rg350-9b6c78a4fed90b5b9fa98e77994f74645ee5fb47.tar.bz2 scummvm-rg350-9b6c78a4fed90b5b9fa98e77994f74645ee5fb47.zip |
SCI: Fixed bug #3036331 - "KQ5: Floppy version
crashes after title", together with a related
problem (kRedrawBox is called erroneously with
an additional parameter when any dialog is
closed)
svn-id: r51470
-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 30f03f54a3..2200dccb4b 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -220,6 +220,8 @@ const SciWorkaroundEntry kGraphRedrawBox_workarounds[] = { { 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 + { GID_KQ5, -1, 981, 0, "myWindow", "dispose", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // Happens in the floppy version, when closing any dialog box, accidental additional parameter specified - bug #3036331 + { GID_KQ5, -1, 995, 0, "invW", "doit", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // Happens in the floppy version, when closing the inventory window, accidental additional parameter specified SCI_WORKAROUNDENTRY_TERMINATOR }; |