diff options
Diffstat (limited to 'engines/lure/detection.cpp')
-rw-r--r-- | engines/lure/detection.cpp | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp index 268c212008..870ebf70f3 100644 --- a/engines/lure/detection.cpp +++ b/engines/lure/detection.cpp @@ -53,6 +53,8 @@ static const PlainGameDescriptor lureGames[] = { namespace Lure { +using Common::GUIO_NONE; + static const LureGameDescription gameDescriptions[] = { { { @@ -61,7 +63,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.ega", "e9c9fdd8a19f7910d68e53cb84651273"), Common::EN_ANY, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY | GF_EGA, }, @@ -73,7 +76,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.vga", "b2a8aa6d7865813a17a3c636e063572e"), Common::EN_ANY, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY, }, @@ -85,7 +89,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.ega", "b80aced0321f64c58df2c7d3d74dfe79"), Common::IT_ITA, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY | GF_EGA, }, @@ -97,7 +102,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.vga", "cf69d5ada228dd74f89046691c16aafb"), Common::IT_ITA, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY, }, @@ -109,7 +115,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.vga", "7aa19e444dab1ac7194d9f7a40ffe54a"), Common::DE_DEU, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY, }, @@ -121,7 +128,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.vga", "894a2c2caeccbad2fc2f4a79a8ee47b0"), Common::DE_DEU, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY, }, @@ -133,7 +141,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.vga", "1c94475c1bb7e0e88c1757d3b5377e94"), Common::FR_FRA, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY, }, @@ -145,7 +154,8 @@ static const LureGameDescription gameDescriptions[] = { AD_ENTRY1("disk1.vga", "1751145b653959f7a64fe1618d6b97ac"), Common::ES_ESP, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GF_FLOPPY, }, @@ -171,7 +181,9 @@ static const ADParams detectionParams = { // List of files for file-based fallback detection (optional) 0, // Flags - kADFlagUseExtraAsHint + kADFlagUseExtraAsHint, + // Additional GUI options (for every game} + Common::GUIO_NOSPEECH }; class LureMetaEngine : public AdvancedMetaEngine { |