aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/chorus.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-10-06 17:25:47 -0700
committerChris Robinson <[email protected]>2013-10-06 17:25:47 -0700
commit79edd2cf3b46b22d3e6c57aec11b942809f24ff3 (patch)
treeb8d75b8de358eb4ea3c251907936cd7c70b9ac8b /Alc/effects/chorus.c
parent6425480d40e2a1b150c208db0421eabb51fe0624 (diff)
Use a macro for the silence threshold
Diffstat (limited to 'Alc/effects/chorus.c')
-rw-r--r--Alc/effects/chorus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/chorus.c b/Alc/effects/chorus.c
index ba664268..8fc82a7f 100644
--- a/Alc/effects/chorus.c
+++ b/Alc/effects/chorus.c
@@ -203,14 +203,14 @@ static void Process##func(ALchorusState *state, ALuint SamplesToDo, \
for(kt = 0;kt < MaxChannels;kt++) \
{ \
ALfloat gain = state->Gain[0][kt]; \
- if(gain > 0.00001f) \
+ if(gain > GAIN_SILENCE_THRESHOLD) \
{ \
for(it = 0;it < td;it++) \
SamplesOut[kt][it+base] += temps[it][0] * gain; \
} \
\
gain = state->Gain[1][kt]; \
- if(gain > 0.00001f) \
+ if(gain > GAIN_SILENCE_THRESHOLD) \
{ \
for(it = 0;it < td;it++) \
SamplesOut[kt][it+base] += temps[it][1] * gain; \