diff options
author | Chris Robinson <[email protected]> | 2015-11-05 19:45:04 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-11-05 19:45:04 -0800 |
commit | 46e72a48adcad773907767b0fe3041aca41a8ba0 (patch) | |
tree | 7cd823d2e47386948414736f088ec7f009a3edf9 /Alc | |
parent | b9e192b78a384ff13d87c606502373725042509c (diff) |
Remove an unneeded memset that was overwriting memory
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/effects/reverb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index 71e12b33..9f83353c 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -567,8 +567,6 @@ static ALvoid ALreverbState_processStandard(ALreverbState *State, ALuint Samples ALfloat (*restrict out)[4] = State->ReverbSamples; ALuint index, c, i; - memset(out, 0, SamplesToDo*4*sizeof(ALfloat)); - /* Process reverb for these samples. */ for(index = 0;index < SamplesToDo;) { |