From 3f9f3e395065f16028f1ce7748f703c1afc0da6f Mon Sep 17 00:00:00 2001 From: divverent Date: Fri, 14 Oct 2011 18:59:57 +0000 Subject: [PATCH] fix warning git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11418 d7cf8633-e32d-0410-b094-e92efae38249 --- snd_mix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/snd_mix.c b/snd_mix.c index fa0069aa..cf992904 100644 --- a/snd_mix.c +++ b/snd_mix.c @@ -56,6 +56,8 @@ static void S_SoftClipPaintBuffer(portable_sampleframe_t *painted_ptr, int nbfra if((snd_softclip.integer == 1 && width <= 2) || snd_softclip.integer > 1) { + portable_sampleframe_t *p = painted_ptr; + #if 0 /* Soft clipping, the sound of a dream, thanks to Jon Wattes post to Musicdsp.org */ @@ -67,7 +69,6 @@ static void S_SoftClipPaintBuffer(portable_sampleframe_t *painted_ptr, int nbfra maxvol = max(1.0f, maxvol * (1.0f - nbframes / (0.4f * snd_renderbuffer->format.speed))); #define SOFTCLIP(x) if(fabs(x)>maxvol) maxvol=fabs(x); (x) /= maxvol; - portable_sampleframe_t *p = painted_ptr; if (channels == 8) // 7.1 surround { for (i = 0;i < nbframes;i++, p++) -- 2.39.2