diff options
Diffstat (limited to 'audio/softsynth/opl')
-rw-r--r-- | audio/softsynth/opl/dosbox.cpp | 4 | ||||
-rw-r--r-- | audio/softsynth/opl/mame.cpp | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/audio/softsynth/opl/dosbox.cpp b/audio/softsynth/opl/dosbox.cpp index 6e8b4a94ed..3d90ec93d0 100644 --- a/audio/softsynth/opl/dosbox.cpp +++ b/audio/softsynth/opl/dosbox.cpp @@ -177,10 +177,6 @@ bool OPL::init() { _emulator->WriteReg(0x105, 1); } - // FIXME: Remove this once EmulatedOPL is actually controlling playback - if (!_callback) - start(0); - return true; } diff --git a/audio/softsynth/opl/mame.cpp b/audio/softsynth/opl/mame.cpp index d43f638496..696169be09 100644 --- a/audio/softsynth/opl/mame.cpp +++ b/audio/softsynth/opl/mame.cpp @@ -61,9 +61,6 @@ bool OPL::init() { _opl = MAME::makeAdLibOPL(g_system->getMixer()->getOutputRate()); - // FIXME: Remove this once EmulatedOPL is actually controlling playback - start(0); - return (_opl != 0); } |