From 6f8f27ecb28fca750e0ceaa09779d78164eaaaac Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Wed, 4 Oct 2017 20:43:01 +0100 Subject: MACOSX: Change name for CoreAudio MIDI device Also remove a couple of TODOs. I think we can limit the CoreAudio plugin to the Apple DLS softsynth since with have the CoreMidi plugin to access other MIDI devices. --- backends/midi/coreaudio.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'backends/midi') diff --git a/backends/midi/coreaudio.cpp b/backends/midi/coreaudio.cpp index 74c590c654..140771960b 100644 --- a/backends/midi/coreaudio.cpp +++ b/backends/midi/coreaudio.cpp @@ -308,7 +308,7 @@ void MidiDriver_CORE::sysEx(const byte *msg, uint16 length) { class CoreAudioMusicPlugin : public MusicPluginObject { public: const char *getName() const { - return "CoreAudio"; + return "Apple DLS Software Synthesizer"; } const char *getId() const { @@ -321,8 +321,6 @@ public: MusicDevices CoreAudioMusicPlugin::getDevices() const { MusicDevices devices; - // TODO: Return a different music type depending on the configuration - // TODO: List the available devices devices.push_back(MusicDevice(this, "", MT_GM)); return devices; } -- cgit v1.2.3