Fixed Engine::hasFeature to use proper types (i.e., MetaEngine::MetaEngineFeature instead of int)

svn-id: r34731
This commit is contained in:
Max Horn 2008-10-03 16:07:57 +00:00
parent b178332e3e
commit 84229ee79c
3 changed files with 7 additions and 6 deletions

View file

@ -103,8 +103,7 @@ MainMenuDialog::MainMenuDialog(Engine *engine)
new GUI::ButtonWidget(this, "globalmain_about", "About", kAboutCmd, 'A');
_rtlButton = new GUI::ButtonWidget(this, "globalmain_rtl", "Return to Launcher", kRTLCmd, 'R');
// '0' corresponds to the kSupportsRTL MetaEngineFeature
_rtlButton->setEnabled(_engine->hasFeature(0));
_rtlButton->setEnabled(_engine->hasFeature(MetaEngine::kSupportsRTL));
new GUI::ButtonWidget(this, "globalmain_quit", "Quit", kQuitCmd, 'Q');