aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/sdl2.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-12-28 22:56:20 -0800
committerChris Robinson <[email protected]>2018-12-28 22:56:20 -0800
commit3d92e8c4df4ebaffbe44507f787f2382e3982c96 (patch)
treefe8f068a902d6b8f5f225120505529d1f6fe31cd /Alc/backends/sdl2.h
parent67b874328d60062558eeb5068a3f79dab2b6f7e3 (diff)
Convert the backends to use proper inheritence
Diffstat (limited to 'Alc/backends/sdl2.h')
-rw-r--r--Alc/backends/sdl2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/sdl2.h b/Alc/backends/sdl2.h
index 7bf4d0e4..7a4ae9eb 100644
--- a/Alc/backends/sdl2.h
+++ b/Alc/backends/sdl2.h
@@ -12,7 +12,7 @@ public:
void probe(DevProbe type, std::string *outnames) override;
- ALCbackend *createBackend(ALCdevice *device, ALCbackend_Type type) override;
+ BackendBase *createBackend(ALCdevice *device, ALCbackend_Type type) override;
static BackendFactory &getFactory();
};