diff options
author | Max Horn | 2009-12-09 18:12:51 +0000 |
---|---|---|
committer | Max Horn | 2009-12-09 18:12:51 +0000 |
commit | c8873d8492ef8ae288e870b37c1c85f3b291d62c (patch) | |
tree | e9902f85422741542ea12f21c17824eab542a5fe /engines/groovie | |
parent | 84f3c98fad7d351611c879dddc86cd309b4f5281 (diff) | |
download | scummvm-rg350-c8873d8492ef8ae288e870b37c1c85f3b291d62c.tar.gz scummvm-rg350-c8873d8492ef8ae288e870b37c1c85f3b291d62c.tar.bz2 scummvm-rg350-c8873d8492ef8ae288e870b37c1c85f3b291d62c.zip |
Changed MidiDriver::createMidi to take a MidiDriverType instead of an int
svn-id: r46316
Diffstat (limited to 'engines/groovie')
-rw-r--r-- | engines/groovie/music.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/music.cpp b/engines/groovie/music.cpp index b504ffde1f..1f38dab97e 100644 --- a/engines/groovie/music.cpp +++ b/engines/groovie/music.cpp @@ -383,7 +383,7 @@ MusicPlayerXMI::MusicPlayerXMI(GroovieEngine *vm, const Common::String >lName) _midiParser = MidiParser::createParser_XMIDI(); // Create the driver - int driver = detectMusicDriver(MDT_MIDI | MDT_ADLIB | MDT_PREFER_MIDI); + MidiDriverType driver = detectMusicDriver(MDT_MIDI | MDT_ADLIB | MDT_PREFER_MIDI); _driver = createMidi(driver); this->open(); |