diff options
author | Paul Gilbert | 2010-04-05 01:49:00 +0000 |
---|---|---|
committer | Paul Gilbert | 2010-04-05 01:49:00 +0000 |
commit | 7555461ac39fb96bca690f6492cc3499674702c0 (patch) | |
tree | 098386e8d379623683bc57e340081989ffb58ded | |
parent | 6285ba4fdfd090378f3157743f164ac7d823a982 (diff) | |
download | scummvm-rg350-7555461ac39fb96bca690f6492cc3499674702c0.tar.gz scummvm-rg350-7555461ac39fb96bca690f6492cc3499674702c0.tar.bz2 scummvm-rg350-7555461ac39fb96bca690f6492cc3499674702c0.zip |
Application of patch #2981748 - Make VGA detection entries take precedence over EGA for command line detection
svn-id: r48532
-rw-r--r-- | engines/lure/detection.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp index 2db489884f..36c1cf237d 100644 --- a/engines/lure/detection.cpp +++ b/engines/lure/detection.cpp @@ -72,53 +72,53 @@ static const LureGameDescription gameDescriptions[] = { { { "lure", - "EGA", - AD_ENTRY1("disk1.ega", "e9c9fdd8a19f7910d68e53cb84651273"), + "VGA", + AD_ENTRY1("disk1.vga", "b2a8aa6d7865813a17a3c636e063572e"), Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, - GF_FLOPPY | GF_EGA, + GF_FLOPPY, }, { { "lure", - "VGA", - AD_ENTRY1("disk1.vga", "b2a8aa6d7865813a17a3c636e063572e"), + "EGA", + AD_ENTRY1("disk1.ega", "e9c9fdd8a19f7910d68e53cb84651273"), Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, - GF_FLOPPY, + GF_FLOPPY | GF_EGA, }, { { "lure", - "EGA", - AD_ENTRY1("disk1.ega", "b80aced0321f64c58df2c7d3d74dfe79"), + "VGA", + AD_ENTRY1("disk1.vga", "cf69d5ada228dd74f89046691c16aafb"), Common::IT_ITA, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, - GF_FLOPPY | GF_EGA, + GF_FLOPPY, }, { { "lure", - "VGA", - AD_ENTRY1("disk1.vga", "cf69d5ada228dd74f89046691c16aafb"), + "EGA", + AD_ENTRY1("disk1.ega", "b80aced0321f64c58df2c7d3d74dfe79"), Common::IT_ITA, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, - GF_FLOPPY, + GF_FLOPPY | GF_EGA, }, { |