diff options
author | sluicebox | 2019-05-21 16:59:46 -0700 |
---|---|---|
committer | sluicebox | 2019-05-21 16:59:46 -0700 |
commit | 6a6506bec43cdab89fd49151822b1f76abe4804d (patch) | |
tree | d2cc6d7585d96b7c1ce073eba6edb9837fe36393 /engines | |
parent | dc0bfbc7241c0085f5dabb80b051f82b77187952 (diff) | |
download | scummvm-rg350-6a6506bec43cdab89fd49151822b1f76abe4804d.tar.gz scummvm-rg350-6a6506bec43cdab89fd49151822b1f76abe4804d.tar.bz2 scummvm-rg350-6a6506bec43cdab89fd49151822b1f76abe4804d.zip |
SCI: Add QFG4CD workaround for searching monsters
Diffstat (limited to 'engines')
-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 10fc9b45ef..ee4e11fc95 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -496,6 +496,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_QFG3, 851, 32, -1, "ProjObj", "doit", NULL, 1, 1, { WORKAROUND_FAKE, 0 } }, // near the end, when throwing the spear of death, bug #5282 { GID_QFG4, -1, 15, -1, "charInitScreen", "dispatchEvent", NULL, 5, 5, { WORKAROUND_FAKE, 0 } }, // floppy version, when viewing the character screen { GID_QFG4, -1, 23, -1, "tellerControls", "dispatchEvent", NULL, 6, 6, { WORKAROUND_FAKE, 0 } }, // floppy version, when using keyboard controls in the conversation interface + { GID_QFG4, -1, 50, -1, "sSearchMonster", "changeState", NULL, 2, 2, { WORKAROUND_FAKE, 0 } }, // CD version, when searching a chernovy or revenant with speech disabled { GID_QFG4, -1, 64917, -1, "controlPlane", "setBitmap", NULL, 3, 3, { WORKAROUND_FAKE, 0 } }, // floppy version, when entering the game menu { GID_QFG4, -1, 64917, -1, "Plane", "setBitmap", NULL, 3, 3, { WORKAROUND_FAKE, 0 } }, // floppy version, happens sometimes in fight scenes { GID_QFG4, 380, 80, -1, "myButton", "select", NULL, 2, 2, { WORKAROUND_FAKE, 1 } }, // CD version, when clicking on a puzzle piece for the keyhole scrambled picture puzzle |