diff options
author | Martin Kiewitz | 2010-07-27 11:38:24 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-27 11:38:24 +0000 |
commit | 601fe8ee7d5c2bffdc117ee6ff97d2d2df373d6c (patch) | |
tree | 6fb29bed9de75b1304bd785e8d2a5e202c5460a7 | |
parent | d013be51e535ff05b2f3f54c448b50b655bceaf3 (diff) | |
download | scummvm-rg350-601fe8ee7d5c2bffdc117ee6ff97d2d2df373d6c.tar.gz scummvm-rg350-601fe8ee7d5c2bffdc117ee6ff97d2d2df373d6c.tar.bz2 scummvm-rg350-601fe8ee7d5c2bffdc117ee6ff97d2d2df373d6c.zip |
SCI: adding workaround for qfg3 (kIsObject)
svn-id: r51364
-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 2237b25ee3..fdcafc51bc 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -199,6 +199,7 @@ const SciWorkaroundEntry kGraphRedrawBox_workarounds[] = { // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kIsObject_workarounds[] = { { GID_GK1, 50, 999, 0, "List", "eachElementDo", -1, 0, { WORKAROUND_FAKE, 0 } }, // GK1 demo, when asking Grace for messages it gets called with an invalid parameter (type "error") + { GID_QFG3, -1, 999, 0, "List", "eachElementDo", -1, 0, { WORKAROUND_FAKE, 0 } }, // when asking for something, gets called with type error parameter SCI_WORKAROUNDENTRY_TERMINATOR }; |