diff options
| author | Eugene Sandulenko | 2011-10-23 17:52:43 +0100 |
|---|---|---|
| committer | Eugene Sandulenko | 2011-10-23 17:53:13 +0100 |
| commit | 32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e (patch) | |
| tree | 052e527c673bc82a9f8ebccd4f3bd1a43e46579a /engines/agi | |
| parent | 77c65648b1db8f8b7b245510681eafd856798d26 (diff) | |
| download | scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.gz scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.bz2 scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.zip | |
AD: Switched rest of the engines to new GUIO
Diffstat (limited to 'engines/agi')
| -rw-r--r-- | engines/agi/detection.cpp | 2 | ||||
| -rw-r--r-- | engines/agi/detection_tables.h | 20 |
2 files changed, 10 insertions, 12 deletions
diff --git a/engines/agi/detection.cpp b/engines/agi/detection.cpp index 21b1831261..982dce8405 100644 --- a/engines/agi/detection.cpp +++ b/engines/agi/detection.cpp @@ -150,7 +150,7 @@ class AgiMetaEngine : public AdvancedMetaEngine { public: AgiMetaEngine() : AdvancedMetaEngine(Agi::gameDescriptions, sizeof(Agi::AGIGameDescription), agiGames) { _singleid = "agi"; - _guioptions = Common::GUIO_NOSPEECH; + _guioptions = GUIO1(GUIO_NOSPEECH); } virtual const char *getName() const { diff --git a/engines/agi/detection_tables.h b/engines/agi/detection_tables.h index f0cd422ed6..081cb39668 100644 --- a/engines/agi/detection_tables.h +++ b/engines/agi/detection_tables.h @@ -22,8 +22,6 @@ namespace Agi { -using Common::GUIO_NONE; - #define GAME_LVFPN(id,extra,fname,md5,size,lang,ver,features,gid,platform,interp) { \ { \ id, \ @@ -32,7 +30,7 @@ using Common::GUIO_NONE; lang, \ platform, \ ADGF_NO_FLAGS, \ - GUIO_NONE \ + GUIO1(GUIO_NONE) \ }, \ gid, \ interp, \ @@ -48,7 +46,7 @@ using Common::GUIO_NONE; lang, \ platform, \ ADGF_USEEXTRAASTITLE, \ - GUIO_NONE \ + GUIO1(GUIO_NONE) \ }, \ gid, \ interp, \ @@ -132,7 +130,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GID_BC, GType_V1, @@ -153,7 +151,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GID_BC, GType_V1, @@ -174,7 +172,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GID_BC, GType_V1, @@ -254,7 +252,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformMacintosh, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GID_GOLDRUSH, GType_V3, @@ -572,7 +570,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformAmiga, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GID_SQ2, GType_V2, @@ -861,7 +859,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_USEEXTRAASTITLE, - GUIO_NONE + GUIO1(GUIO_NONE) }, GID_FANMADE, GType_V3, @@ -889,7 +887,7 @@ static AGIGameDescription g_fallbackDesc = { Common::UNK_LANG, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GID_FANMADE, GType_V2, |
