From 81a5a90450f82e0844ef64b2f27dc6554d588c2b Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 10 Mar 2007 06:31:50 +0000 Subject: [PATCH] all static data now --- libs/audio/renderer/snd_mix.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/audio/renderer/snd_mix.c b/libs/audio/renderer/snd_mix.c index b0e729092..3c46a52fb 100644 --- a/libs/audio/renderer/snd_mix.c +++ b/libs/audio/renderer/snd_mix.c @@ -48,12 +48,12 @@ static __attribute__ ((used)) const char rcsid[] = #include "snd_render.h" #define PAINTBUFFER_SIZE 512 -portable_samplepair_t paintbuffer[PAINTBUFFER_SIZE * 2]; +static portable_samplepair_t paintbuffer[PAINTBUFFER_SIZE * 2]; static int max_overpaint; // number of extra samples painted // due to phase shift -int snd_scaletable[32][256]; -int *snd_p, snd_linear_count, snd_vol; -short *snd_out; +static int snd_scaletable[32][256]; +static int *snd_p, snd_linear_count, snd_vol; +static short *snd_out; static void SND_WriteLinearBlastStereo16 (void)