aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/sdl2.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-12-29 01:38:26 -0800
committerChris Robinson <[email protected]>2018-12-29 01:38:26 -0800
commit3c637d5fd70e7bdb5dfc79c515359cba3eb0c9af (patch)
treeb053ef719d9854ea9d96429700fddd22f9768e53 /Alc/backends/sdl2.cpp
parent8fd44772153c903e47529bde63fce40c56d7277d (diff)
Make the backend type an enum class
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;
}