diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/engine.cpp | 6 | ||||
-rw-r--r-- | common/engine.h | 1 |
2 files changed, 2 insertions, 5 deletions
diff --git a/common/engine.cpp b/common/engine.cpp index 25213b486f..90d73ed53a 100644 --- a/common/engine.cpp +++ b/common/engine.cpp @@ -73,7 +73,6 @@ const char *gScummVMFullVersion = "ScummVM 0.5.3cvs (" __DATE__ " " __TIME__ ")" /* FIXME - BIG HACK for MidiEmu */ OSystem *g_system = 0; -SoundMixer *g_mixer = 0; Engine *g_engine = 0; Engine::Engine(GameDetector *detector, OSystem *syst) @@ -83,9 +82,8 @@ Engine::Engine(GameDetector *detector, OSystem *syst) _gameDataPath = detector->_gameDataPath; - /* FIXME - BIG HACK for MidiEmu */ - g_system = _system; - g_mixer = _mixer; + g_system = _system; // FIXME - BIG HACK for MidiEmu + _timer = new Timer(this); } diff --git a/common/engine.h b/common/engine.h index 6731effd62..bed622bcf2 100644 --- a/common/engine.h +++ b/common/engine.h @@ -53,7 +53,6 @@ struct VersionSettings; /* FIXME - BIG HACK for MidiEmu */ extern OSystem *g_system; -extern SoundMixer *g_mixer; class Engine { public: |