]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
Fixed muh bools being capitalized wrong
authorReki <spiper212@gmail.com>
Thu, 27 May 2021 12:03:03 +0000 (08:03 -0400)
committerReki <spiper212@gmail.com>
Thu, 27 May 2021 12:03:03 +0000 (08:03 -0400)
snd_ogg.c

index eec4c35d81a2ab22e6536102025bef76627c249b..2e84705c787693d8e85e9b72e3dccc3af7b4bc53 100644 (file)
--- 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;
                }
        }