From e20143fcc42e4a39b365b3f1395dfde94a30ac31 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 27 Dec 2020 00:14:58 -0800 Subject: Move the WetBuffer reference to EffectSlot --- al/auxeffectslot.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'al/auxeffectslot.cpp') diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp index e43ad4ad..efc1bb2e 100644 --- a/al/auxeffectslot.cpp +++ b/al/auxeffectslot.cpp @@ -277,7 +277,7 @@ ALeffectslot *AllocEffectSlot(ALCcontext *context) context->setError(err, "Effect slot object initialization failed"); return nullptr; } - aluInitEffectPanning(slot, context); + aluInitEffectPanning(&slot->mSlot, context); /* Add 1 to avoid source ID 0. */ slot->id = ((lidx<<6) | slidx) + 1; @@ -897,8 +897,6 @@ ALeffectslot::~ALeffectslot() delete props; } - if(mWetBuffer) - mWetBuffer->mInUse = false; if(mSlot.mEffectState) mSlot.mEffectState->release(); } -- cgit v1.2.3