aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/reverb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/effects/reverb.cpp')
-rw-r--r--Alc/effects/reverb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/reverb.cpp b/Alc/effects/reverb.cpp
index 2c4d6238..5b0fd080 100644
--- a/Alc/effects/reverb.cpp
+++ b/Alc/effects/reverb.cpp
@@ -1360,7 +1360,7 @@ void ReverbState::process(ALsizei samplesToDo, const ALfloat (*RESTRICT samplesI
/* Step fading forward. */
fadeCount += todo;
- if(LIKELY(fadeCount >= FADE_SAMPLES))
+ if(fadeCount >= FADE_SAMPLES-3)
{
/* Update the cross-fading delay line taps. */
fadeCount = FADE_SAMPLES;