diff options
author | sluicebox | 2019-02-18 16:26:20 -0800 |
---|---|---|
committer | sluicebox | 2019-02-18 16:26:20 -0800 |
commit | 80b4aac8dda275bcba9bd2ec41dcfdb4a2baceb3 (patch) | |
tree | 7d92fe5586bf129db2ca639bccf83eaf0b608f53 | |
parent | a534d58dbc7aa50b3daecdd3efcc45cc291304b8 (diff) | |
download | scummvm-rg350-80b4aac8dda275bcba9bd2ec41dcfdb4a2baceb3.tar.gz scummvm-rg350-80b4aac8dda275bcba9bd2ec41dcfdb4a2baceb3.tar.bz2 scummvm-rg350-80b4aac8dda275bcba9bd2ec41dcfdb4a2baceb3.zip |
SCI: Add QFG1VGA Mac workaround for centaur
-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 c27a5d8d66..b0f2c62af6 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -474,6 +474,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_QFG1, -1, 210, 0, "Encounter", "init", sig_uninitread_qfg1_1, 0, 0, { WORKAROUND_FAKE, 0 } }, // qfg1/hq1: going to the brigands hideout { GID_QFG1VGA, 16, 16, 0, "lassoFailed", "changeState", NULL, -1, -1, { WORKAROUND_FAKE, 0 } }, // qfg1vga: casting the "fetch" spell in the screen with the flowers, temps 0 and 1 - bug #5309 { GID_QFG1VGA, -1, 210, 0, "Encounter", "init", sig_uninitread_qfg1vga_1, 0, 0, { WORKAROUND_FAKE, 0 } }, // qfg1vga: going to the brigands hideout - bug #5515 + { GID_QFG1VGA, 320, 320, 0, NULL, "changeState", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // qfg1vga mac: first time entering room 320 when centaur offers fruits and vegetables { GID_QFG2, -1, 71, 0, "theInvSheet", "doit", NULL, 1, 1, { WORKAROUND_FAKE, 0 } }, // accessing the inventory { GID_QFG2, -1, 79, 0, "TryToMoveTo", "onTarget", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // when throwing pot at air elemental, happens when client coordinates are the same as airElemental coordinates. happened to me right after room change - bug #6859 { GID_QFG2, -1, 701, -1, "Alley", "at", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // when walking inside the alleys in the town - bug #5019 & #5106 |