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/null.cpp | |
parent | f2ddf971df5cbbd112e0d677b0ea5bd6368051dc (diff) |
Get rid of a redundant enum
Diffstat (limited to 'alc/backends/null.cpp')
-rw-r--r-- | alc/backends/null.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/backends/null.cpp b/alc/backends/null.cpp index 1b90a1ee..8692e513 100644 --- a/alc/backends/null.cpp +++ b/alc/backends/null.cpp @@ -154,16 +154,16 @@ bool NullBackendFactory::init() bool NullBackendFactory::querySupport(BackendType type) { return (type == BackendType::Playback); } -std::string NullBackendFactory::probe(DevProbe type) +std::string NullBackendFactory::probe(BackendType type) { std::string outnames; switch(type) { - case DevProbe::Playback: + case BackendType::Playback: /* Includes null char. */ outnames.append(nullDevice, sizeof(nullDevice)); break; - case DevProbe::Capture: + case BackendType::Capture: break; } return outnames; |