diff options
author | Filippos Karapetis | 2011-08-25 01:49:26 +0300 |
---|---|---|
committer | Filippos Karapetis | 2011-08-25 01:49:26 +0300 |
commit | 3774c38db59dd8528126112011d5345afee111bd (patch) | |
tree | af3a9c8254c76c82952219f7ea2170ba4d67cc0e /engines/sci | |
parent | c56dc1811ef6432b2b011373491a968e7977f1e1 (diff) | |
download | scummvm-rg350-3774c38db59dd8528126112011d5345afee111bd.tar.gz scummvm-rg350-3774c38db59dd8528126112011d5345afee111bd.tar.bz2 scummvm-rg350-3774c38db59dd8528126112011d5345afee111bd.zip |
SCI: Added two workarounds for script bug #3389579
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index b2cde47f4a..968afcb11c 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -209,6 +209,8 @@ 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_PQ1, 500, 500, 0, "endInter", "changeState", 0x3e8, 0, { WORKAROUND_IGNORE, 0 } }, // restoring a game at the map scene (bug #3389579) + { GID_PQ1, 500, 500, 0, "endInter", "changeState", 0x46b, 0, { WORKAROUND_IGNORE, 0 } }, // restoring a game at the map scene (bug #3389579) { 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 |