diff options
author | Martin Kiewitz | 2010-08-01 15:31:23 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-08-01 15:31:23 +0000 |
commit | 88438ce118c38e3179bd4dac56aa95c54f8215b6 (patch) | |
tree | cd2cf66c252a6b726e1de0f6afe16ec02fbe285d /engines/sci/engine | |
parent | 7207290dc36c05f73693cf8107303ea49d9e0d63 (diff) | |
download | scummvm-rg350-88438ce118c38e3179bd4dac56aa95c54f8215b6.tar.gz scummvm-rg350-88438ce118c38e3179bd4dac56aa95c54f8215b6.tar.bz2 scummvm-rg350-88438ce118c38e3179bd4dac56aa95c54f8215b6.zip |
SCI: adding workaround for pq2 kDisplay
in room 23
svn-id: r51578
Diffstat (limited to 'engines/sci/engine')
-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 1f07c5f3a5..1e8c0df13f 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -160,6 +160,7 @@ const SciWorkaroundEntry kDeviceInfo_workarounds[] = { // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kDisplay_workarounds[] = { { GID_ISLANDBRAIN, 300, 300, 0, "geneDude", "show", -1, 0, { WORKAROUND_IGNORE, 0 } }, // when looking at the gene explanation chart - a parameter is an object + { GID_PQ2, 23, 23, 0, "rm23Script", "elements", 0x4ae, 0, { WORKAROUND_IGNORE, 0 } }, // when looking at the 2nd page of pate's file - 75h as id { GID_SQ4, 391, 391, 0, "doCatalog", "mode", 0x84, 0, { WORKAROUND_IGNORE, 0 } }, // clicking on catalog in roboter sale - a parameter is an object { GID_SQ4, 391, 391, 0, "choosePlug", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // ordering connector in roboter sale - a parameter is an object SCI_WORKAROUNDENTRY_TERMINATOR |