aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMain.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 /OpenAL32/Include/alMain.h
parent67b874328d60062558eeb5068a3f79dab2b6f7e3 (diff)
Convert the backends to use proper inheritence
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r--OpenAL32/Include/alMain.h4
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};