diff options
| author | James Brown | 2002-05-08 09:38:23 +0000 |
|---|---|---|
| committer | James Brown | 2002-05-08 09:38:23 +0000 |
| commit | 167b3d2bb72447ea710214f2be805cf57bc18ab2 (patch) | |
| tree | df26f28d3dc4fb4d268bd07347868b6eaa2b2658 /gameDetector.cpp | |
| parent | 41a843d7620838fbaff1d26242c04127f66427c8 (diff) | |
| download | scummvm-rg350-167b3d2bb72447ea710214f2be805cf57bc18ab2.tar.gz scummvm-rg350-167b3d2bb72447ea710214f2be805cf57bc18ab2.tar.bz2 scummvm-rg350-167b3d2bb72447ea710214f2be805cf57bc18ab2.zip | |
Update documentation regarding Zak and MIDIEMU.
Default to MIDIEMU on UNIX targets.
svn-id: r4243
Diffstat (limited to 'gameDetector.cpp')
| -rw-r--r-- | gameDetector.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gameDetector.cpp b/gameDetector.cpp index 7446a20d34..61e56c2c33 100644 --- a/gameDetector.cpp +++ b/gameDetector.cpp @@ -575,6 +575,11 @@ MidiDriver *GameDetector::createMidi() { #elif defined(__APPLE__) || defined(macintosh) /* MD_QTMUSIC is default MidiDriver on MacOS targets */ if (drv == MD_AUTO) drv = MD_QTMUSIC; +#elif defined(UNIX) + /* MD_MIDIEMU is default MidiDriver on UNIX targets. */ + /* FIXME: Attempt to detect if sequencer is available, + and use it in preference. */ + if (drv == MD_AUTO) drv = MD_MIDIEMU; #endif switch(drv) { |
