diff options
author | Eugene Sandulenko | 2012-10-19 17:40:22 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2015-12-27 15:39:52 +0100 |
commit | 1b128d26d7a40877514040a517b7f0527141504e (patch) | |
tree | d552a909d49cc62a615362e5cb4b20a2450ab395 /engines/wage | |
parent | 43aaffc80d1bf34da9edc47dcf00bd2b399fb5a3 (diff) | |
download | scummvm-rg350-1b128d26d7a40877514040a517b7f0527141504e.tar.gz scummvm-rg350-1b128d26d7a40877514040a517b7f0527141504e.tar.bz2 scummvm-rg350-1b128d26d7a40877514040a517b7f0527141504e.zip |
WAGE: Fix compilation with modern ScummVM
Signed-off-by: Eugene Sandulenko <sev@scummvm.org>
Diffstat (limited to 'engines/wage')
-rw-r--r-- | engines/wage/detection.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/wage/detection.cpp b/engines/wage/detection.cpp index fa6a1e8ba7..9b05f8b567 100644 --- a/engines/wage/detection.cpp +++ b/engines/wage/detection.cpp @@ -48,8 +48,6 @@ static const PlainGameDescriptor wageGames[] = { namespace Wage { -using Common::GUIO_NONE; - static const ADGameDescription gameDescriptions[] = { { "afm", @@ -58,7 +56,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO0() }, AD_TABLE_END_MARKER @@ -70,7 +68,7 @@ class WageMetaEngine : public AdvancedMetaEngine { public: WageMetaEngine() : AdvancedMetaEngine(Wage::gameDescriptions, sizeof(ADGameDescription), wageGames) { _singleid = "wage"; - _guioptions = Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI; + _guioptions = GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI); } virtual const char *getName() const { |