aboutsummaryrefslogtreecommitdiff
path: root/base/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'base/engine.cpp')
-rw-r--r--base/engine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/engine.cpp b/base/engine.cpp
index 50bccb4746..4e8bb4a749 100644
--- a/base/engine.cpp
+++ b/base/engine.cpp
@@ -32,10 +32,10 @@
/* FIXME - BIG HACK for MidiEmu */
Engine *g_engine = 0;
-Engine::Engine(GameDetector *detector, OSystem *syst)
+Engine::Engine(OSystem *syst)
: _system(syst), _gameDataPath(ConfMan.get("path")) {
g_engine = this;
- _mixer = detector->createMixer();
+ _mixer = GameDetector::createMixer();
_timer = g_timer;