diff options
Diffstat (limited to 'Alc/effects/reverb.c')
-rw-r--r-- | Alc/effects/reverb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index 45d25da7..5b937d96 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -1148,8 +1148,7 @@ static ALvoid ALreverbState_update(ALreverbState *State, ALCdevice *Device, cons else { /* Update channel gains */ - ALfloat gain = 2.0f/Device->NumSpeakers * Slot->Gain * ReverbBoost; - SetGains(Device, gain, State->Gain); + ComputeAmbientGains(Device, Slot->Gain*2.0f, State->Gain); } } |