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/agi | |
| 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/agi')
| -rw-r--r-- | engines/agi/detection.cpp | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/engines/agi/detection.cpp b/engines/agi/detection.cpp index f53e42017e..b17ecfa9eb 100644 --- a/engines/agi/detection.cpp +++ b/engines/agi/detection.cpp @@ -127,6 +127,8 @@ static const PlainGameDescriptor agiGames[] = { namespace Agi { +using Common::GUIO_NONE; + #define GAME_LVFPN(id,name,fname,md5,size,lang,ver,features,gid,platform,interp) { \ { \ id, \ @@ -134,7 +136,8 @@ namespace Agi { AD_ENTRY1s(fname,md5,size), \ lang, \ platform, \ - ADGF_NO_FLAGS \ + ADGF_NO_FLAGS, \ + GUIO_NONE \ }, \ gid, \ interp, \ @@ -266,7 +269,8 @@ static const AGIGameDescription gameDescriptions[] = { }, Common::EN_ANY, Common::kPlatformMacintosh, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GID_GOLDRUSH, GType_V3, @@ -513,7 +517,8 @@ static const AGIGameDescription gameDescriptions[] = { }, Common::EN_ANY, Common::kPlatformAmiga, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GID_SQ2, GType_V2, @@ -641,7 +646,8 @@ static const AGIGameDescription gameDescriptions[] = { AD_ENTRY1("logdir", "421da3a18004122a966d64ab6bd86d2e"), Common::RU_RUS, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GID_FANMADE, GType_V2, @@ -657,7 +663,8 @@ static const AGIGameDescription gameDescriptions[] = { AD_ENTRY1("logdir", "aaea5b4a348acb669d13b0e6f22d4dc9"), Common::EN_ANY, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GID_GETOUTTASQ, GType_V2, @@ -817,7 +824,8 @@ static AGIGameDescription g_fallbackDesc = { AD_ENTRY1(0, 0), // This should always be AD_ENTRY1(0, 0) in the fallback descriptor Common::UNK_LANG, Common::kPlatformPC, - ADGF_NO_FLAGS + ADGF_NO_FLAGS, + GUIO_NONE }, GID_FANMADE, GType_V2, @@ -841,7 +849,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_NOSPEECH | Common::GUIO_NOMIDI }; } // End of namespace Agi |
