aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-11-05 19:45:04 -0800
committerChris Robinson <[email protected]>2015-11-05 19:45:04 -0800
commit46e72a48adcad773907767b0fe3041aca41a8ba0 (patch)
tree7cd823d2e47386948414736f088ec7f009a3edf9 /Alc
parentb9e192b78a384ff13d87c606502373725042509c (diff)
Remove an unneeded memset that was overwriting memory
Diffstat (limited to 'Alc')
-rw-r--r--Alc/effects/reverb.c2
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;)
{