From 46e72a48adcad773907767b0fe3041aca41a8ba0 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 5 Nov 2015 19:45:04 -0800 Subject: [PATCH] Remove an unneeded memset that was overwriting memory --- Alc/effects/reverb.c | 2 -- 1 file changed, 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;) {