diff options
author | Chris Robinson <[email protected]> | 2019-03-19 00:24:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-03-19 00:24:54 -0700 |
commit | 9695952c8d45245c3f1dbbfd9a363403bd5dd6aa (patch) | |
tree | daa5c61e7ad0d72ad5a2184c54a7aa88b66688d0 /Alc/backends/pulseaudio.cpp | |
parent | d31514f8beff74d4425a7dd7bcc2084023a3ffdd (diff) |
Rename DevProbe enum names
Diffstat (limited to 'Alc/backends/pulseaudio.cpp')
-rw-r--r-- | Alc/backends/pulseaudio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/pulseaudio.cpp b/Alc/backends/pulseaudio.cpp index bf952813..adae1a0f 100644 --- a/Alc/backends/pulseaudio.cpp +++ b/Alc/backends/pulseaudio.cpp @@ -1652,12 +1652,12 @@ void PulseBackendFactory::probe(DevProbe type, std::string *outnames) }; switch(type) { - case ALL_DEVICE_PROBE: + case DevProbe::Playback: probePlaybackDevices(); std::for_each(PlaybackDevices.cbegin(), PlaybackDevices.cend(), add_device); break; - case CAPTURE_DEVICE_PROBE: + case DevProbe::Capture: probeCaptureDevices(); std::for_each(CaptureDevices.cbegin(), CaptureDevices.cend(), add_device); break; |