Skip to content

Commit

Permalink
WAGE: Fix compilation with modern ScummVM
Browse files Browse the repository at this point in the history
Signed-off-by: Eugene Sandulenko <sev@scummvm.org>
  • Loading branch information
sev- committed Dec 27, 2015
1 parent 43aaffc commit 1b128d2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions engines/wage/detection.cpp
Expand Up @@ -48,8 +48,6 @@ static const PlainGameDescriptor wageGames[] = {

namespace Wage {

using Common::GUIO_NONE;

static const ADGameDescription gameDescriptions[] = {
{
"afm",
Expand All @@ -58,7 +56,7 @@ static const ADGameDescription gameDescriptions[] = {
Common::EN_ANY,
Common::kPlatformPC,
ADGF_NO_FLAGS,
GUIO_NONE
GUIO0()
},

AD_TABLE_END_MARKER
Expand All @@ -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 {
Expand Down

0 comments on commit 1b128d2

Please sign in to comment.