aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/coreaudio.cpp
diff options
context:
space:
mode:
authorChris Robinson <chris.kcat@gmail.com>2020-03-30 16:00:02 -0700
committerChris Robinson <chris.kcat@gmail.com>2020-03-30 16:00:02 -0700
commit662d77159bf9b24b9ef48717547a6d454551bc43 (patch)
treec68e48139a1d4093cc9f01356e8a5d45161f01db /alc/backends/coreaudio.cpp
parentf2ddf971df5cbbd112e0d677b0ea5bd6368051dc (diff)
Get rid of a redundant enum
Diffstat (limited to 'alc/backends/coreaudio.cpp')
-rw-r--r--alc/backends/coreaudio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/backends/coreaudio.cpp b/alc/backends/coreaudio.cpp
index 56520641..6201ca47 100644
--- a/alc/backends/coreaudio.cpp
+++ b/alc/backends/coreaudio.cpp
@@ -637,13 +637,13 @@ bool CoreAudioBackendFactory::init() { return true; }
bool CoreAudioBackendFactory::querySupport(BackendType type)
{ return type == BackendType::Playback || type == BackendType::Capture; }
-std::string CoreAudioBackendFactory::probe(DevProbe type)
+std::string CoreAudioBackendFactory::probe(BackendType type)
{
std::string outnames;
switch(type)
{
- case DevProbe::Playback:
- case DevProbe::Capture:
+ case BackendType::Playback:
+ case BackendType::Capture:
/* Includes null char. */
outnames.append(ca_device, sizeof(ca_device));
break;