From 46cae36ef9e22bb715d13c756a88f6ff62c487a6 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 31 Jan 2016 09:39:07 -0800 Subject: Fix an out of date comment --- Alc/effects/reverb.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index b822ec19..2b4ac923 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -1049,10 +1049,8 @@ static ALvoid UpdateEchoLine(ALfloat reverbGain, ALfloat lateGain, ALfloat echoT State->Echo.LpCoeff = CalcDampingCoeff(hfRatio, echoTime, decayTime, State->Echo.Coeff, cw); - /* Calculate the echo mixing coefficients. The first is applied to the - * echo itself. The second is used to attenuate the late reverb when - * echo depth is high and diffusion is low, so the echo is slightly - * stronger than the decorrelated echos in the reverb tail. + /* Calculate the echo mixing coefficient. This is applied to the output mix + * only, not the feedback. */ State->Echo.MixCoeff = reverbGain * lateGain * echoDepth; } -- cgit v1.2.3