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/lastexpress | |
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/lastexpress')
-rw-r--r-- | engines/lastexpress/detection.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/lastexpress/detection.cpp b/engines/lastexpress/detection.cpp index 0a177809dd..e2133c0929 100644 --- a/engines/lastexpress/detection.cpp +++ b/engines/lastexpress/detection.cpp @@ -48,7 +48,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (English) - UK Broderbund Release @@ -66,7 +66,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (English) - Interplay Release @@ -84,7 +84,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (Demo - English) - Broderbund @@ -99,7 +99,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformUnknown, ADGF_DEMO | ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (French) - Broderbund Release @@ -117,7 +117,7 @@ static const ADGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (German) @@ -135,7 +135,7 @@ static const ADGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (Spanish) @@ -153,7 +153,7 @@ static const ADGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (Italian) @@ -171,7 +171,7 @@ static const ADGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, // The Last Express (Russian) @@ -189,7 +189,7 @@ static const ADGameDescription gameDescriptions[] = { Common::RU_RUS, Common::kPlatformUnknown, ADGF_UNSTABLE, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, AD_TABLE_END_MARKER @@ -200,7 +200,7 @@ class LastExpressMetaEngine : public AdvancedMetaEngine { public: LastExpressMetaEngine() : AdvancedMetaEngine(gameDescriptions, sizeof(ADGameDescription), lastExpressGames) { _singleid = "lastexpress"; - _guioptions = Common::GUIO_NOSUBTITLES | Common::GUIO_NOSFX; + _guioptions = GUIO2(GUIO_NOSUBTITLES, GUIO_NOSFX); } const char *getName() const { |