diff options
author | Filippos Karapetis | 2012-05-22 10:47:04 +0300 |
---|---|---|
committer | Filippos Karapetis | 2012-05-22 10:50:40 +0300 |
commit | a1554b9ddd719efc97cbf344fe84d20416810b0b (patch) | |
tree | f9099b0f3697bb0c446e6253169964177cd8cbc8 | |
parent | 5a8a28bb22ac986e2f18a93fd6afd0252b5a2333 (diff) | |
download | scummvm-rg350-a1554b9ddd719efc97cbf344fe84d20416810b0b.tar.gz scummvm-rg350-a1554b9ddd719efc97cbf344fe84d20416810b0b.tar.bz2 scummvm-rg350-a1554b9ddd719efc97cbf344fe84d20416810b0b.zip |
SCI: Fix the detection of the NRS patch for QFG3
-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 9b0ee6924b..960016764a 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, 994, 4714, 0, 0x00 }, + { GID_QFG3, 33, 260, 0, 0x00 }, // 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 }, |