diff options
Diffstat (limited to 'Alc/effects/dedicated.c')
-rw-r--r-- | Alc/effects/dedicated.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/dedicated.c b/Alc/effects/dedicated.c index 2aa08953..5a9842fa 100644 --- a/Alc/effects/dedicated.c +++ b/Alc/effects/dedicated.c @@ -78,7 +78,7 @@ static ALvoid ALdedicatedState_process(ALdedicatedState *state, ALuint SamplesTo for(c = 0;c < MaxChannels;c++) { - if(!(gains[c] > 0.00001f)) + if(!(gains[c] > GAIN_SILENCE_THRESHOLD)) continue; for(i = 0;i < SamplesToDo;i++) |