diff options
author | Filippos Karapetis | 2013-04-27 14:40:08 +0300 |
---|---|---|
committer | Filippos Karapetis | 2013-04-27 14:40:08 +0300 |
commit | 99e90b98f02fa24f152a49462bf96dc51a107f58 (patch) | |
tree | 5e3812d2cc917d8872f28403fb9c6d02a08312c0 /engines/sci | |
parent | 46ebf37ec9f658f0fc55f69161c72ac2f7504733 (diff) | |
download | scummvm-rg350-99e90b98f02fa24f152a49462bf96dc51a107f58.tar.gz scummvm-rg350-99e90b98f02fa24f152a49462bf96dc51a107f58.tar.bz2 scummvm-rg350-99e90b98f02fa24f152a49462bf96dc51a107f58.zip |
SCI: Fix incorrect detection of NRS patches in QFG3 (bug #3574541)
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/sci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index caba2c33cc..14baa400a3 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -385,7 +385,7 @@ bool SciEngine::gameHasFanMadePatch() { { GID_PQ3, 994, 4686, 1291, 0x78 }, // English { GID_PQ3, 994, 4734, 1283, 0x78 }, // German { GID_QFG1VGA, 994, 4388, 0, 0x00 }, - { GID_QFG3, 33, 260, 0, 0x00 }, + { GID_QFG3, 994, 4714, 2, 0x48 }, // TODO: Disabled, as it fixes a whole lot of bugs which can't be tested till SCI2.1 support is finished //{ GID_QFG4, 710, 11477, 0, 0x00 }, { GID_SQ1, 994, 4740, 0, 0x00 }, |