aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/distortion.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/effects/distortion.c')
-rw-r--r--Alc/effects/distortion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/distortion.c b/Alc/effects/distortion.c
index a5f876cb..04a05d99 100644
--- a/Alc/effects/distortion.c
+++ b/Alc/effects/distortion.c
@@ -82,7 +82,7 @@ static ALvoid ALdistortionState_update(ALdistortionState *state, ALCdevice *Devi
ALfilterState_setParams(&state->bandpass, ALfilterType_BandPass, 1.0f,
cutoff / (frequency*4.0f), bandwidth);
- gain = sqrtf(1.0f / Device->NumChan) * Slot->Gain;
+ gain = sqrtf(1.0f / Device->NumSpeakers) * Slot->Gain;
SetGains(Device, gain, state->Gain);
}