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/drascula | |
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/drascula')
-rw-r--r-- | engines/drascula/detection.cpp | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp index 6ba5597e8a..0969ad4131 100644 --- a/engines/drascula/detection.cpp +++ b/engines/drascula/detection.cpp @@ -63,8 +63,6 @@ static const PlainGameDescriptor drasculaGames[] = { namespace Drascula { -using Common::GUIO_NONE; - static const DrasculaGameDescription gameDescriptions[] = { { // Drascula English version @@ -75,7 +73,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -95,7 +93,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -112,7 +110,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -129,7 +127,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -142,7 +140,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -155,7 +153,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -168,7 +166,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -181,7 +179,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -194,7 +192,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, { @@ -206,7 +204,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -223,7 +221,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -240,7 +238,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -257,7 +255,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, GF_PACKED, - GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -270,7 +268,7 @@ class DrasculaMetaEngine : public AdvancedMetaEngine { public: DrasculaMetaEngine() : AdvancedMetaEngine(Drascula::gameDescriptions, sizeof(Drascula::DrasculaGameDescription), drasculaGames) { _singleid = "drascula"; - _guioptions = Common::GUIO_NOMIDI | Common::GUIO_NOLAUNCHLOAD; + _guioptions = GUIO2(GUIO_NOMIDI, GUIO_NOLAUNCHLOAD); } virtual const char *getName() const { |