aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/music.cpp
diff options
context:
space:
mode:
authorMax Horn2009-12-09 18:12:51 +0000
committerMax Horn2009-12-09 18:12:51 +0000
commitc8873d8492ef8ae288e870b37c1c85f3b291d62c (patch)
treee9902f85422741542ea12f21c17824eab542a5fe /engines/groovie/music.cpp
parent84f3c98fad7d351611c879dddc86cd309b4f5281 (diff)
downloadscummvm-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/music.cpp')
-rw-r--r--engines/groovie/music.cpp2
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 &gtlName)
_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();