aboutsummaryrefslogtreecommitdiff
path: root/scumm/imuse.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-11 16:09:58 +0000
committerMax Horn2002-12-11 16:09:58 +0000
commitbf62494fd5fc578a609b5986237035997c214b15 (patch)
tree68c3f90d9ddd0f93fafc1c84548e611d458d88de /scumm/imuse.cpp
parent5bf87dd3682af7de77fd0fff8d182087ebc8151a (diff)
downloadscummvm-rg350-bf62494fd5fc578a609b5986237035997c214b15.tar.gz
scummvm-rg350-bf62494fd5fc578a609b5986237035997c214b15.tar.bz2
scummvm-rg350-bf62494fd5fc578a609b5986237035997c214b15.zip
ripped out obsolete midi streaming code from backends (this may break Alsa/SEQ/Windows/Morphos compile, I tried my best, but you'll have to clean up after me)
svn-id: r5905
Diffstat (limited to 'scumm/imuse.cpp')
-rw-r--r--scumm/imuse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp
index d46cfe336d..36d2b9cef8 100644
--- a/scumm/imuse.cpp
+++ b/scumm/imuse.cpp
@@ -3743,9 +3743,9 @@ void IMuseGM::init(IMuseInternal *eng, OSystem *syst)
_system = syst;
// Open MIDI driver
- int result = _md->open(MidiDriver::MO_SIMPLE);
+ int result = _md->open();
if (result)
- error("IMuseGM::error = %s", MidiDriver::get_error_name(result));
+ error("IMuseGM::error = %s", MidiDriver::getErrorName(result));
// Connect to the driver's timer
_se = eng;