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/cruise | |
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/cruise')
-rw-r--r-- | engines/cruise/detection.cpp | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/engines/cruise/detection.cpp b/engines/cruise/detection.cpp index a68b14d986..a482e263a2 100644 --- a/engines/cruise/detection.cpp +++ b/engines/cruise/detection.cpp @@ -66,8 +66,6 @@ static const PlainGameDescriptor cruiseGames[] = { namespace Cruise { -using Common::GUIO_NONE; - static const CRUISEGameDescription gameDescriptions[] = { { { @@ -77,7 +75,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::EN_GRB, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -90,7 +88,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -103,7 +101,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -116,7 +114,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -129,7 +127,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -142,7 +140,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -155,7 +153,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformAmiga, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -168,7 +166,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformAmiga, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -181,7 +179,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformAtariST, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -194,7 +192,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -207,7 +205,7 @@ static const CRUISEGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, GType_CRUISE, 0, @@ -221,7 +219,7 @@ class CruiseMetaEngine : public AdvancedMetaEngine { public: CruiseMetaEngine() : AdvancedMetaEngine(Cruise::gameDescriptions, sizeof(Cruise::CRUISEGameDescription), cruiseGames) { _singleid = "cruise"; - _guioptions = Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI; + _guioptions = GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI); } virtual const char *getName() const { |