diff options
author | Chris Robinson <[email protected]> | 2018-12-28 22:56:20 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-28 22:56:20 -0800 |
commit | 3d92e8c4df4ebaffbe44507f787f2382e3982c96 (patch) | |
tree | fe8f068a902d6b8f5f225120505529d1f6fe31cd /OpenAL32/Include/alMain.h | |
parent | 67b874328d60062558eeb5068a3f79dab2b6f7e3 (diff) |
Convert the backends to use proper inheritence
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index e5ad21ef..391ef8df 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -236,7 +236,7 @@ struct EnumeratedHrtf; struct DirectHrtfState; struct FrontStablizer; struct Compressor; -struct ALCbackend; +struct BackendBase; struct ALbuffer; struct ALeffect; struct ALfilter; @@ -786,7 +786,7 @@ struct ALCdevice_struct { std::atomic<ALCcontext*> ContextList{nullptr}; std::mutex BackendLock; - ALCbackend *Backend{nullptr}; + BackendBase *Backend{nullptr}; std::atomic<ALCdevice*> next{nullptr}; |