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/parallaction | |
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/parallaction')
-rw-r--r-- | engines/parallaction/detection.cpp | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/engines/parallaction/detection.cpp b/engines/parallaction/detection.cpp index ec483bad84..bda88e7812 100644 --- a/engines/parallaction/detection.cpp +++ b/engines/parallaction/detection.cpp @@ -55,6 +55,9 @@ static const PlainGameDescriptor parallactionGames[] = { namespace Parallaction { +using Common::GUIO_NONE; +using Common::GUIO_NOSPEECH; + static const PARALLACTIONGameDescription gameDescriptions[] = { { { @@ -73,7 +76,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::UNK_LANG, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NOSPEECH }, GType_Nippon, GF_LANG_EN | GF_LANG_FR | GF_LANG_DE | GF_LANG_IT | GF_LANG_MULT, @@ -96,7 +100,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::UNK_LANG, Common::kPlatformAmiga, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NOSPEECH }, GType_Nippon, GF_LANG_EN | GF_LANG_FR | GF_LANG_DE | GF_LANG_MULT, @@ -113,7 +118,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::EN_ANY, Common::kPlatformAmiga, - ADGF_DEMO + ADGF_DEMO, + GUIO_NOSPEECH }, GType_Nippon, GF_LANG_EN | GF_DEMO, @@ -135,7 +141,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::IT_ITA, Common::kPlatformAmiga, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NOSPEECH }, GType_Nippon, GF_LANG_IT, @@ -152,7 +159,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::UNK_LANG, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NOSPEECH }, GType_BRA, GF_LANG_EN | GF_LANG_FR | GF_LANG_DE | GF_LANG_IT | GF_LANG_MULT, @@ -168,7 +176,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::UNK_LANG, Common::kPlatformPC, - ADGF_DEMO + ADGF_DEMO, + GUIO_NOSPEECH }, GType_BRA, GF_LANG_EN | GF_DEMO, @@ -184,7 +193,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::UNK_LANG, Common::kPlatformAmiga, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NOSPEECH }, GType_BRA, GF_LANG_EN | GF_LANG_FR | GF_LANG_DE | GF_LANG_IT | GF_LANG_MULT, @@ -200,7 +210,8 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { }, Common::UNK_LANG, Common::kPlatformAmiga, - ADGF_DEMO + ADGF_DEMO, + GUIO_NOSPEECH }, GType_BRA, GF_LANG_EN | GF_DEMO, @@ -227,7 +238,9 @@ static const ADParams detectionParams = { // List of files for file-based fallback detection (optional) 0, // Flags - 0 + 0, + // Additional GUI options (for every game} + Common::GUIO_NONE }; class ParallactionMetaEngine : public AdvancedMetaEngine { |