diff options
author | Vhati | 2019-02-04 12:49:52 -0500 |
---|---|---|
committer | Filippos Karapetis | 2019-02-04 23:15:28 +0200 |
commit | 470f5fbbae7dae623ce5b0465f5e75964850a2d6 (patch) | |
tree | 7e1d87b58caa8561e4246adb9c36d7b8ebe7a3d7 /engines | |
parent | d18c83e8b8b96c3849b7bdd34b17a6bb91da4e78 (diff) | |
download | scummvm-rg350-470f5fbbae7dae623ce5b0465f5e75964850a2d6.tar.gz scummvm-rg350-470f5fbbae7dae623ce5b0465f5e75964850a2d6.tar.bz2 scummvm-rg350-470f5fbbae7dae623ce5b0465f5e75964850a2d6.zip |
SCI32: Cleanup QFG4 Remove a commented workaround
It was superseded by commit aa9a1ab.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/script_patches.cpp | 2 | ||||
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index bf08f174b5..9466cd87c2 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -3487,7 +3487,7 @@ static const SciScriptPatcherEntry lighthouseSignatures[] = { // The procedure expects a letter arg and returns no value, so the first call // takes its letter and feeds an undefined value to the second call. Thus the // kStrCat() within the procedure reads a random pointer and crashes. -// +// // We patch all of the 5 doubled local calls (one for each letter typed from // "R", "O", "B", "I", "N") to be the same as the English version. // Applies to at least: German floppy diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 0bff1f62f2..46980b5180 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -87,7 +87,6 @@ const SciWorkaroundEntry arithmeticWorkarounds[] = { { GID_QFG1VGA, 301, 928, 0, "Blink", "init", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // op_div: when entering the inn, gets called with 1 parameter, but 2nd parameter is used for div which happens to be an object { GID_QFG2, 200, 200, 0, "astro", "messages", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // op_lsi: when getting asked for your name by the astrologer - bug #5152 { GID_QFG3, 780, 999, 0, "", "export 6", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // op_add: trying to talk to yourself at the top of the giant tree - bug #6692 -// { GID_QFG4, 710,64941, 0, "RandCycle", "doit", NULL, 0, 0, { WORKAROUND_FAKE, 1 } }, // op_gt: when the tentacle appears in the third room of the caves { GID_TORIN, 51400,64928, 0, "Blink", "init", NULL, 0, 0, { WORKAROUND_FAKE, 1 } }, // op_div: when Lycentia knocks Torin out after he removes her collar SCI_WORKAROUNDENTRY_TERMINATOR }; |