diff options
author | Martin Kiewitz | 2010-08-12 21:20:01 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-08-12 21:20:01 +0000 |
commit | 49c7ebf72ff9e01af78c760bffd2d26bc8ff0b6c (patch) | |
tree | 458d867ce677f5f3887ae06c60cdbf418072c507 /engines/sci | |
parent | 4be0eb985e8a8b0505077308b084937b930ef156 (diff) | |
download | scummvm-rg350-49c7ebf72ff9e01af78c760bffd2d26bc8ff0b6c.tar.gz scummvm-rg350-49c7ebf72ff9e01af78c760bffd2d26bc8ff0b6c.tar.bz2 scummvm-rg350-49c7ebf72ff9e01af78c760bffd2d26bc8ff0b6c.zip |
SCI: adding pq2 workaround
we had this workaround before, this is for a different pq2 version - bug #3043904
svn-id: r52044
Diffstat (limited to 'engines/sci')
-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 83e05ffba3..c96ca0c4da 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -215,6 +215,7 @@ const SciWorkaroundEntry kDeviceInfo_workarounds[] = { 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 - 0x75 as id + { GID_PQ2, 23, 23, 0, "rm23Script", "elements", 0x4c1, 0, { WORKAROUND_IGNORE, 0 } }, // when looking at the 2nd page of pate's file - 0x75 as id (another pq2 version, bug #3043904) { GID_QFG1, 11, 11, 0, "battle", "<noname90>", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: When entering battle, 0x75 as id { GID_SQ1, -1, 700, 0, "arcadaRegion", "doit", -1, 0, { WORKAROUND_IGNORE, 0 } }, // restoring in some rooms of the arcada (right at the start) { GID_SQ4, 391, 391, 0, "doCatalog", "mode", 0x84, 0, { WORKAROUND_IGNORE, 0 } }, // clicking on catalog in roboter sale - a parameter is an object |