From 86ca73754d520caefc9a38b6badb02a8f61e0fab Mon Sep 17 00:00:00 2001 From: Yamagi Burmeister Date: Sun, 4 Nov 2012 09:18:37 +0100 Subject: [PATCH] Silence a compiler warning on OS X --- src/client/sound/snd_al.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/sound/snd_al.c b/src/client/sound/snd_al.c index b702c8ea..73a4753a 100644 --- a/src/client/sound/snd_al.c +++ b/src/client/sound/snd_al.c @@ -48,7 +48,10 @@ qboolean streamPlaying; int active_buffers; static ALuint streamSource; + +#ifndef __APPLE__ static ALuint underwaterFilter; +#endif static ALuint s_srcnums[MAX_CHANNELS - 1]; static int s_framecount;