diff options
author | Filippos Karapetis | 2010-08-07 01:27:14 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-08-07 01:27:14 +0000 |
commit | 7b7364a80f8db29b8b36f419cf47b0097358af6d (patch) | |
tree | 321654d43907c67544345a7c535821b2ff769d0a | |
parent | 978e52379f50cb787000bbfdfca804e25a59783a (diff) | |
download | scummvm-rg350-7b7364a80f8db29b8b36f419cf47b0097358af6d.tar.gz scummvm-rg350-7b7364a80f8db29b8b36f419cf47b0097358af6d.tar.bz2 scummvm-rg350-7b7364a80f8db29b8b36f419cf47b0097358af6d.zip |
SCI: Fixed script bug #3039395 - "KQ5: Crash when opening leather pouch"
svn-id: r51823
-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 25d0c16196..427556a368 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -299,6 +299,7 @@ const SciWorkaroundEntry kGraphRedrawBox_workarounds[] = { { 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 + { GID_KQ5, -1, 995, 0, "", "export 0", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // Happens in the floppy version, when opening the gem pouch, accidental additional parameter specified - bug #3039395 SCI_WORKAROUNDENTRY_TERMINATOR }; |