aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/detection.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2012-10-19 17:40:22 +0200
committerEugene Sandulenko2015-12-27 15:39:52 +0100
commit1b128d26d7a40877514040a517b7f0527141504e (patch)
treed552a909d49cc62a615362e5cb4b20a2450ab395 /engines/wage/detection.cpp
parent43aaffc80d1bf34da9edc47dcf00bd2b399fb5a3 (diff)
downloadscummvm-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/detection.cpp')
-rw-r--r--engines/wage/detection.cpp6
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 {