diff options
author | Chris Robinson <[email protected]> | 2020-03-30 16:00:02 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-03-30 16:00:02 -0700 |
commit | 662d77159bf9b24b9ef48717547a6d454551bc43 (patch) | |
tree | c68e48139a1d4093cc9f01356e8a5d45161f01db /alc/backends/sndio.cpp | |
parent | f2ddf971df5cbbd112e0d677b0ea5bd6368051dc (diff) |
Get rid of a redundant enum
Diffstat (limited to 'alc/backends/sndio.cpp')
-rw-r--r-- | alc/backends/sndio.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/backends/sndio.cpp b/alc/backends/sndio.cpp index e9f11791..7ca11430 100644 --- a/alc/backends/sndio.cpp +++ b/alc/backends/sndio.cpp @@ -452,13 +452,13 @@ bool SndIOBackendFactory::init() bool SndIOBackendFactory::querySupport(BackendType type) { return (type == BackendType::Playback || type == BackendType::Capture); } -std::string SndIOBackendFactory::probe(DevProbe type) +std::string SndIOBackendFactory::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(sndio_device, sizeof(sndio_device)); break; |