aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/dsound.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-12-29 02:16:16 -0800
committerChris Robinson <[email protected]>2018-12-29 02:16:16 -0800
commit71a4d6db6f88cbb735cd959b3dd16d83a27474cf (patch)
tree4aff47e22dc5c8486c7229e23848edb34cc11ada /Alc/backends/dsound.h
parent3c637d5fd70e7bdb5dfc79c515359cba3eb0c9af (diff)
Return a unique_ptr for the backend
Diffstat (limited to 'Alc/backends/dsound.h')
-rw-r--r--Alc/backends/dsound.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/dsound.h b/Alc/backends/dsound.h
index 819c4231..89484b4d 100644
--- a/Alc/backends/dsound.h
+++ b/Alc/backends/dsound.h
@@ -12,7 +12,7 @@ public:
void probe(DevProbe type, std::string *outnames) override;
- BackendBase *createBackend(ALCdevice *device, BackendType type) override;
+ BackendPtr createBackend(ALCdevice *device, BackendType type) override;
static BackendFactory &getFactory();
};