From d675625c16584a9c5c8049fd83e48cd754f4e3c5 Mon Sep 17 00:00:00 2001 From: Reki Date: Thu, 27 May 2021 08:03:03 -0400 Subject: [PATCH] Fixed muh bools being capitalized wrong --- snd_ogg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snd_ogg.c b/snd_ogg.c index eec4c35d..2e84705c 100644 --- a/snd_ogg.c +++ b/snd_ogg.c @@ -652,7 +652,7 @@ qbool OGG_LoadVorbisFile(const char *filename, sfx_t *sfx) sfx->total_length = qov_pcm_total(&vf, -1); - shouldStream = FALSE; + shouldStream = false; //Con_Print("Sound effect (ogg) loaded\n"); @@ -667,7 +667,7 @@ qbool OGG_LoadVorbisFile(const char *filename, sfx_t *sfx) (!nostream) ) { - shouldStream = TRUE; + shouldStream = true; } } -- 2.39.2