From d7bda1dfbca9147b91eb0f3f3a78bed14a370e13 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 24 Jan 2017 10:33:29 +0000 Subject: [PATCH] bah git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5047 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/snd_sdl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/client/snd_sdl.c b/engine/client/snd_sdl.c index 0438a8337..c594b8bd2 100644 --- a/engine/client/snd_sdl.c +++ b/engine/client/snd_sdl.c @@ -320,13 +320,13 @@ typedef struct static void QDECL SDL_Capture_Start(void *ctx) { sdlcapture_t *d = ctx; - SDL_PauseAudioDevice(d->dev, FALSE); + SDL_PauseAudioDevice(d->dev, false); } static void QDECL SDL_Capture_Stop(void *ctx) { sdlcapture_t *d = ctx; - SDL_PauseAudioDevice(d->dev, TRUE); + SDL_PauseAudioDevice(d->dev, true); } static void QDECL SDL_Capture_Shutdown(void *ctx)