diff options
author | Chris Robinson <[email protected]> | 2018-12-29 02:16:16 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-29 02:16:16 -0800 |
commit | 71a4d6db6f88cbb735cd959b3dd16d83a27474cf (patch) | |
tree | 4aff47e22dc5c8486c7229e23848edb34cc11ada /Alc/backends/null.cpp | |
parent | 3c637d5fd70e7bdb5dfc79c515359cba3eb0c9af (diff) |
Return a unique_ptr for the backend
Diffstat (limited to 'Alc/backends/null.cpp')
-rw-r--r-- | Alc/backends/null.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/null.cpp b/Alc/backends/null.cpp index 480b5554..3aee7204 100644 --- a/Alc/backends/null.cpp +++ b/Alc/backends/null.cpp @@ -169,10 +169,10 @@ void NullBackendFactory::probe(DevProbe type, std::string *outnames) } } -BackendBase *NullBackendFactory::createBackend(ALCdevice *device, BackendType type) +BackendPtr NullBackendFactory::createBackend(ALCdevice *device, BackendType type) { if(type == BackendType::Playback) - return new NullBackend{device}; + return BackendPtr{new NullBackend{device}}; return nullptr; } |