diff options
Diffstat (limited to 'alc/backends/sdl2.cpp')
-rw-r--r-- | alc/backends/sdl2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/backends/sdl2.cpp b/alc/backends/sdl2.cpp index e894e6a6..b47ff185 100644 --- a/alc/backends/sdl2.cpp +++ b/alc/backends/sdl2.cpp @@ -193,11 +193,11 @@ bool SDL2BackendFactory::init() bool SDL2BackendFactory::querySupport(BackendType type) { return type == BackendType::Playback; } -std::string SDL2BackendFactory::probe(DevProbe type) +std::string SDL2BackendFactory::probe(BackendType type) { std::string outnames; - if(type != DevProbe::Playback) + if(type != BackendType::Playback) return outnames; int num_devices{SDL_GetNumAudioDevices(SDL_FALSE)}; |