diff options
author | Eugene Sandulenko | 2009-06-06 17:56:41 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2009-06-06 17:56:41 +0000 |
commit | 1bd6f6c99fbc3328e2405efe3fdec0dec1bf24e4 (patch) | |
tree | 650bf2072fad3fc20a0f2d0679ffde15aa8351ce /engines/groovie | |
parent | f6d06085d5b7e4723117147d84eec477c0b6f9db (diff) | |
download | scummvm-rg350-1bd6f6c99fbc3328e2405efe3fdec0dec1bf24e4.tar.gz scummvm-rg350-1bd6f6c99fbc3328e2405efe3fdec0dec1bf24e4.tar.bz2 scummvm-rg350-1bd6f6c99fbc3328e2405efe3fdec0dec1bf24e4.zip |
Added game GUI options to advancedDetector and updated all engines
svn-id: r41272
Diffstat (limited to 'engines/groovie')
-rw-r--r-- | engines/groovie/detection.cpp | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/engines/groovie/detection.cpp b/engines/groovie/detection.cpp index a2ba4a0aed..8d0e466bba 100644 --- a/engines/groovie/detection.cpp +++ b/engines/groovie/detection.cpp @@ -48,6 +48,8 @@ static const PlainGameDescriptor groovieGames[] = { {0, 0} }; +using Common::GUIO_NONE; + static const GroovieGameDescription gameDescriptions[] = { // The 7th Guest DOS English @@ -55,7 +57,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "t7g", "", AD_ENTRY1s("script.grv", "d1b8033b40aa67c076039881eccce90d", 16659), - Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieT7G, 0 }, @@ -65,7 +67,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "t7g", "", AD_ENTRY1s("script.grv", "6e30b54b1f3bc2262cdcf7961db2ae67", 17191), - Common::EN_ANY, Common::kPlatformMacintosh, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformMacintosh, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieT7G, 0 }, @@ -79,7 +81,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "intro.gjd", 0, NULL, 31711554}, { NULL, 0, NULL, 0} }, - Common::RU_RUS, Common::kPlatformPC, ADGF_NO_FLAGS + Common::RU_RUS, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieT7G, 0 }, @@ -90,7 +92,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "11h", "", AD_ENTRY1s("disk.1", "5c0428cd3659fc7bbcd0aa16485ed5da", 227), - Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieV2, 1 }, @@ -100,7 +102,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "11h", "Demo", AD_ENTRY1s("disk.1", "aacb32ce07e0df2894bd83a3dee40c12", 70), - Common::EN_ANY, Common::kPlatformPC, ADGF_DEMO + Common::EN_ANY, Common::kPlatformPC, ADGF_DEMO, GUIO_NONE }, kGroovieV2, 1 }, @@ -110,7 +112,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "11h", "Making Of", AD_ENTRY1s("disk.1", "5c0428cd3659fc7bbcd0aa16485ed5da", 227), - Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieV2, 2 }, @@ -120,7 +122,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "clandestiny", "Trailer", AD_ENTRY1s("disk.1", "5c0428cd3659fc7bbcd0aa16485ed5da", 227), - Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieV2, 3 }, @@ -130,7 +132,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "clandestiny", "", AD_ENTRY1s("disk.1", "f79fc1515174540fef6a34132efc4c53", 76), - Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieV2, 1 }, @@ -140,7 +142,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "unclehenry", "", AD_ENTRY1s("disk.1", "0e1b1d3cecc4fc7efa62a968844d1f7a", 72), - Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieV2, 1 }, @@ -150,7 +152,7 @@ static const GroovieGameDescription gameDescriptions[] = { { "tlc", "", AD_ENTRY1s("disk.1", "32a1afa68478f1f9d2b25eeea427f2e3", 84), - Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS + Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, GUIO_NONE }, kGroovieV2, 1 }, @@ -175,7 +177,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_NOMIDI }; |