diff options
author | Max Horn | 2008-03-12 18:42:47 +0000 |
---|---|---|
committer | Max Horn | 2008-03-12 18:42:47 +0000 |
commit | 05b159609b074fb4f45454edcc92446557b3167d (patch) | |
tree | 364031614d98882d7b3beb592dfbd319c131348e /sound | |
parent | b434f189bce98626dbe31539bb8d907e67d5ca99 (diff) | |
download | scummvm-rg350-05b159609b074fb4f45454edcc92446557b3167d.tar.gz scummvm-rg350-05b159609b074fb4f45454edcc92446557b3167d.tar.bz2 scummvm-rg350-05b159609b074fb4f45454edcc92446557b3167d.zip |
Removed remaining traces of the dead MorphOS backend, which itself was removed about one year ago
svn-id: r31114
Diffstat (limited to 'sound')
-rw-r--r-- | sound/mididrv.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp index 9e7ba686f4..b504925a37 100644 --- a/sound/mididrv.cpp +++ b/sound/mididrv.cpp @@ -73,9 +73,6 @@ static const MidiDriverDescription s_musicDrivers[] = { # endif #endif -#if defined(__MORPHOS__) - {"etude", "Etude", MD_ETUDE, MDT_MIDI}, -#endif #ifdef USE_FLUIDSYNTH {"fluidsynth", "FluidSynth", MD_FLUIDSYNTH, MDT_MIDI}, #endif @@ -165,8 +162,6 @@ static int getDefaultMIDIDriver() { #else return MD_NULL; #endif -#elif defined(__MORPHOS__) - return MD_ETUDE; #else return MD_NULL; #endif @@ -252,9 +247,6 @@ MidiDriver *MidiDriver::createMidi(int midiDriver) { #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) case MD_WINDOWS: return MidiDriver_WIN_create(); #endif -#if defined(__MORPHOS__) - case MD_ETUDE: return MidiDriver_ETUDE_create(); -#endif #if defined(UNIX) && !defined(__BEOS__) && !defined(MACOSX) && !defined(__MAEMO__) case MD_SEQ: return MidiDriver_SEQ_create(); #endif |