diff options
-rw-r--r-- | Alc/effects/reverb.c | 6 |
1 files 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; } |