diff options
author | Chris Robinson <[email protected]> | 2013-10-03 05:02:16 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-03 05:02:16 -0700 |
commit | 764ea95781486f86c7be956e84cf97ab893ac07b (patch) | |
tree | a6fc6b17121a2f4cab499b97a59378470fb3cb75 /Alc/effects/chorus.c | |
parent | 99fa5911bc9f427c96fe800f94d31e4942805fd2 (diff) |
Use helpers to set channel gain arrays
Also avoid unnecessary clearing.
Diffstat (limited to 'Alc/effects/chorus.c')
-rw-r--r-- | Alc/effects/chorus.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Alc/effects/chorus.c b/Alc/effects/chorus.c index cec6f435..ba664268 100644 --- a/Alc/effects/chorus.c +++ b/Alc/effects/chorus.c @@ -103,13 +103,6 @@ static ALvoid ALchorusState_update(ALchorusState *state, ALCdevice *Device, cons ALfloat frequency = (ALfloat)Device->Frequency; ALfloat rate; ALint phase; - ALuint it; - - for (it = 0; it < MaxChannels; it++) - { - state->Gain[0][it] = 0.0f; - state->Gain[1][it] = 0.0f; - } state->waveform = Slot->EffectProps.Chorus.Waveform; state->depth = Slot->EffectProps.Chorus.Depth; |