aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/sdl2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/backends/sdl2.cpp')
-rw-r--r--Alc/backends/sdl2.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/Alc/backends/sdl2.cpp b/Alc/backends/sdl2.cpp
index 91d1cece..72c2dbcd 100644
--- a/Alc/backends/sdl2.cpp
+++ b/Alc/backends/sdl2.cpp
@@ -202,10 +202,8 @@ void SDL2BackendFactory::deinit()
SDL_QuitSubSystem(SDL_INIT_AUDIO);
}
-bool SDL2BackendFactory::querySupport(ALCbackend_Type type)
-{
- return (type == ALCbackend_Playback);
-}
+bool SDL2BackendFactory::querySupport(BackendType type)
+{ return type == BackendType::Playback; }
void SDL2BackendFactory::probe(DevProbe type, std::string *outnames)
{
@@ -225,9 +223,9 @@ void SDL2BackendFactory::probe(DevProbe type, std::string *outnames)
}
}
-BackendBase *SDL2BackendFactory::createBackend(ALCdevice *device, ALCbackend_Type type)
+BackendBase *SDL2BackendFactory::createBackend(ALCdevice *device, BackendType type)
{
- if(type == ALCbackend_Playback)
+ if(type == BackendType::Playback)
return new Sdl2Backend{device};
return nullptr;
}