diff options
Diffstat (limited to 'Alc/effects/modulator.c')
-rw-r--r-- | Alc/effects/modulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/modulator.c b/Alc/effects/modulator.c index a77a42df..b71070f5 100644 --- a/Alc/effects/modulator.c +++ b/Alc/effects/modulator.c @@ -102,7 +102,7 @@ static void Process##func(ALmodulatorState *state, ALuint SamplesToDo, \ for(k = 0;k < MaxChannels;k++) \ { \ ALfloat gain = state->Gain[k]; \ - if(!(gain > 0.00001f)) \ + if(!(gain > GAIN_SILENCE_THRESHOLD)) \ continue; \ \ for(i = 0;i < td;i++) \ |