aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/alu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alu.cpp b/Alc/alu.cpp
index 95889626..f835f9fd 100644
--- a/Alc/alu.cpp
+++ b/Alc/alu.cpp
@@ -449,12 +449,12 @@ bool CalcEffectSlotParams(ALeffectslot *slot, ALCcontext *context, bool force)
params.Buffer = &reinterpret_cast<ALfloat(&)[BUFFERSIZE]>(target->WetBuffer[0]);
params.NumChannels = target->WetBuffer.size();
- output = EffectTarget{&params, &params, nullptr};
+ output = EffectTarget{&params, nullptr};
}
else
{
ALCdevice *device{context->Device};
- output = EffectTarget{&device->Dry, &device->FOAOut, &device->RealOut};
+ output = EffectTarget{&device->Dry, &device->RealOut};
}
state->update(context, slot, &slot->Params.EffectProps, output);
return true;