diff options
author | Thierry Crozat | 2017-10-04 20:43:01 +0100 |
---|---|---|
committer | Thierry Crozat | 2017-10-06 00:03:37 +0100 |
commit | 6f8f27ecb28fca750e0ceaa09779d78164eaaaac (patch) | |
tree | b51973f966fadcef03cb086e578c13cd115706f9 /backends | |
parent | 9a070508880d555fb7e02b5a35f7d175d316a5a3 (diff) | |
download | scummvm-rg350-6f8f27ecb28fca750e0ceaa09779d78164eaaaac.tar.gz scummvm-rg350-6f8f27ecb28fca750e0ceaa09779d78164eaaaac.tar.bz2 scummvm-rg350-6f8f27ecb28fca750e0ceaa09779d78164eaaaac.zip |
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.
Diffstat (limited to 'backends')
-rw-r--r-- | backends/midi/coreaudio.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
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; } |