From: Reki Date: Thu, 27 May 2021 12:03:03 +0000 (-0400) Subject: Fixed muh bools being capitalized wrong X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d675625c16584a9c5c8049fd83e48cd754f4e3c5;p=xonotic%2Fdarkplaces.git Fixed muh bools being capitalized wrong --- 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; } }