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/touche | |
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/touche')
-rw-r--r-- | engines/touche/detection.cpp | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index 75bc5c2a6e..efe09ead5e 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -39,6 +39,8 @@ static const PlainGameDescriptor toucheGames[] = { namespace Touche { +using Common::GUIO_NONE; + static const ADGameDescription gameDescriptions[] = { { // retail version "touche", @@ -46,7 +48,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "2af0177f8887e3430f345e6b4d8b1414", 26350211), Common::EN_ANY, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, { // retail version - tracker item #1601818 "touche", @@ -54,7 +57,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "95967f0b51d2e813e99ca00325098340", 26350190), Common::EN_ANY, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, { // retail version "touche", @@ -62,7 +66,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "1caa20bb4d4fc2ce8eb867b6610082b3", 26558232), Common::FR_FRA, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, { // retail version - tracker item #1598643 "touche", @@ -70,7 +75,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "be2ae6454b3325e410946f2322547cd4", 26625537), Common::DE_DEU, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, { // retail version - tracker item #1681643 "touche", @@ -78,7 +84,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "64e95ba1decf5a5a60f8fa1840f40c62", 26529523), Common::ES_ESP, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, { // fan-made translation (http://www.iagtg.net/) - tracker item #1602360 "touche", @@ -86,7 +93,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "1f442331d4b327c3488a9f6ffe9bdd25", 26367792), Common::IT_ITA, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, { // retail version - tracker item #1800500 "touche", @@ -94,7 +102,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "42d19a0bef65465109020440a9caa228", 26487370), Common::PL_POL, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, { // demo version "touche", @@ -102,7 +111,8 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("touche.dat", "ddaed436445b2e77294ed19e8ae4aa2c", 8720683), Common::EN_ANY, Common::kPlatformPC, - ADGF_DEMO + ADGF_DEMO, + GUIO_NONE }, AD_TABLE_END_MARKER }; @@ -122,7 +132,9 @@ static const ADParams detectionParams = { 0, // no obsolete targets data "touche", Touche::fileBasedFallback, // file-based detection data to enable not yet known versions to start - kADFlagPrintWarningOnFileBasedFallback + kADFlagPrintWarningOnFileBasedFallback, + // Additional GUI options (for every game} + Common::GUIO_NONE }; class ToucheMetaEngine : public AdvancedMetaEngine { |