diff options
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index 0851305a..4992236a 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -1221,7 +1221,7 @@ void ProbeAllDevicesList() decltype(alcAllDevicesList){}.swap(alcAllDevicesList); else { - std::string names{PlaybackFactory->probe(DevProbe::Playback)}; + std::string names{PlaybackFactory->probe(BackendType::Playback)}; if(names.empty()) names += '\0'; names.swap(alcAllDevicesList); } @@ -1235,7 +1235,7 @@ void ProbeCaptureDeviceList() decltype(alcCaptureDeviceList){}.swap(alcCaptureDeviceList); else { - std::string names{CaptureFactory->probe(DevProbe::Capture)}; + std::string names{CaptureFactory->probe(BackendType::Capture)}; if(names.empty()) names += '\0'; names.swap(alcCaptureDeviceList); } |