mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
Add a comment regarding use of CoreAudio/AudioUnits v1 API
svn-id: r17916
This commit is contained in:
parent
54bf9bf1ad
commit
28e40b33a7
@ -62,7 +62,10 @@ int MidiDriver_CORE::open() {
|
||||
ComponentDescription compdesc;
|
||||
Component compid;
|
||||
|
||||
// Open the Music Device
|
||||
// Open the Music Device.
|
||||
// We use the AudioUnit v1 API, even though it is deprecated, because
|
||||
// this way we stay compatible with older OS X versions.
|
||||
// For v2, we'd use kAudioUnitType_MusicDevice and kAudioUnitSubType_DLSSynth
|
||||
compdesc.componentType = kAudioUnitComponentType;
|
||||
compdesc.componentSubType = kAudioUnitSubType_MusicDevice;
|
||||
compdesc.componentManufacturer = kAudioUnitID_DLSSynth;
|
||||
|
Loading…
x
Reference in New Issue
Block a user