aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-03-19 00:24:54 -0700
committerChris Robinson <[email protected]>2019-03-19 00:24:54 -0700
commit9695952c8d45245c3f1dbbfd9a363403bd5dd6aa (patch)
treedaa5c61e7ad0d72ad5a2184c54a7aa88b66688d0 /Alc/alc.cpp
parentd31514f8beff74d4425a7dd7bcc2084023a3ffdd (diff)
Rename DevProbe enum names
Diffstat (limited to 'Alc/alc.cpp')
-rw-r--r--Alc/alc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alc.cpp b/Alc/alc.cpp
index 6e6bc2b4..b7b35c52 100644
--- a/Alc/alc.cpp
+++ b/Alc/alc.cpp
@@ -1178,9 +1178,9 @@ static void ProbeDevices(std::string *list, BackendInfo *backendinfo, DevProbe t
backendinfo->getFactory().probe(type, list);
}
static void ProbeAllDevicesList(void)
-{ ProbeDevices(&alcAllDevicesList, &PlaybackBackend, ALL_DEVICE_PROBE); }
+{ ProbeDevices(&alcAllDevicesList, &PlaybackBackend, DevProbe::Playback); }
static void ProbeCaptureDeviceList(void)
-{ ProbeDevices(&alcCaptureDeviceList, &CaptureBackend, CAPTURE_DEVICE_PROBE); }
+{ ProbeDevices(&alcCaptureDeviceList, &CaptureBackend, DevProbe::Capture); }
/************************************************