diff options
author | Martin Kiewitz | 2015-04-19 20:48:23 +0200 |
---|---|---|
committer | Martin Kiewitz | 2015-04-19 20:48:23 +0200 |
commit | 6777785cdf5dee85fff62e08ec43ce963bb71b41 (patch) | |
tree | 34610679da8d5de465dce1e247905aaaa2df2534 | |
parent | d8c732c2a1f16ddf4f189f856b0bdd0f9ad149c3 (diff) | |
download | scummvm-rg350-6777785cdf5dee85fff62e08ec43ce963bb71b41.tar.gz scummvm-rg350-6777785cdf5dee85fff62e08ec43ce963bb71b41.tar.bz2 scummvm-rg350-6777785cdf5dee85fff62e08ec43ce963bb71b41.zip |
SCI: workaround sig cleanup 2
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 71ba7d05a4..b33457606e 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -629,9 +629,9 @@ const SciWorkaroundEntry kGraphUpdateBox_workarounds[] = { // gameID, room,script,lvl, object-name, method-name, local-call-signature, index, workaround const SciWorkaroundEntry kIsObject_workarounds[] = { - { GID_GK1, 50, 999, 0, "List", "eachElementDo", NULL, 0, { WORKAROUND_FAKE, 0 } }, // GK1 demo, when asking Grace for messages it gets called with an invalid parameter (type "error") - bug #4950 - { GID_ISLANDBRAIN, -1, 999, 0, "List", "eachElementDo", NULL, 0, { WORKAROUND_FAKE, 0 } }, // when going to the game options, choosing "Info" and selecting anything from the list, gets called with an invalid parameter (type "error") - bug #4989 - { GID_QFG3, -1, 999, 0, "List", "eachElementDo", NULL, 0, { WORKAROUND_FAKE, 0 } }, // when asking for something, gets called with type error parameter + { GID_GK1, 50, 999, 0, "List", "eachElementDo", NULL, 0, { WORKAROUND_FAKE, 0 } }, // GK1 demo, when asking Grace for messages it gets called with an invalid parameter (type "error") - bug #4950 + { GID_ISLANDBRAIN, -1, 999, 0, "List", "eachElementDo", NULL, 0, { WORKAROUND_FAKE, 0 } }, // when going to the game options, choosing "Info" and selecting anything from the list, gets called with an invalid parameter (type "error") - bug #4989 + { GID_QFG3, -1, 999, 0, "List", "eachElementDo", NULL, 0, { WORKAROUND_FAKE, 0 } }, // when asking for something, gets called with type error parameter SCI_WORKAROUNDENTRY_TERMINATOR }; |