aboutsummaryrefslogtreecommitdiff
path: root/base/engine.cpp
diff options
context:
space:
mode:
authorMax Horn2006-04-15 16:37:48 +0000
committerMax Horn2006-04-15 16:37:48 +0000
commitfa085439b9a346efe99cf0a95c8f6bba293c18e7 (patch)
tree6e89c443b91aba9a8a5e3dadbc80c2c304baa5ed /base/engine.cpp
parente3737b9f47d65b8e48adb50092988fa2899c6aba (diff)
downloadscummvm-rg350-fa085439b9a346efe99cf0a95c8f6bba293c18e7.tar.gz
scummvm-rg350-fa085439b9a346efe99cf0a95c8f6bba293c18e7.tar.bz2
scummvm-rg350-fa085439b9a346efe99cf0a95c8f6bba293c18e7.zip
Removed GameDetector::createMixer(), GameDetector::createEngine(), GameDetector::_plugin
svn-id: r21913
Diffstat (limited to 'base/engine.cpp')
-rw-r--r--base/engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/engine.cpp b/base/engine.cpp
index a3767d1bf4..f64b1ec68c 100644
--- a/base/engine.cpp
+++ b/base/engine.cpp
@@ -39,7 +39,7 @@ Engine *g_engine = 0;
Engine::Engine(OSystem *syst)
: _system(syst), _gameDataPath(ConfMan.get("path")) {
g_engine = this;
- _mixer = GameDetector::createMixer();
+ _mixer = new Audio::Mixer();
_timer = Common::g_timer;