diff options
Diffstat (limited to 'Alc/backends/coreaudio.cpp')
-rw-r--r-- | Alc/backends/coreaudio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/coreaudio.cpp b/Alc/backends/coreaudio.cpp index 432733f4..ce4bf600 100644 --- a/Alc/backends/coreaudio.cpp +++ b/Alc/backends/coreaudio.cpp @@ -694,8 +694,8 @@ void CoreAudioBackendFactory::probe(DevProbe type, std::string *outnames) { switch(type) { - case ALL_DEVICE_PROBE: - case CAPTURE_DEVICE_PROBE: + case DevProbe::Playback: + case DevProbe::Capture: /* Includes null char. */ outnames->append(ca_device, sizeof(ca_device)); break; |