]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
Fix compile warnings
authorCloudwalk <mazecraze96@gmail.com>
Wed, 10 Jun 2020 13:44:06 +0000 (09:44 -0400)
committerCloudwalk <mazecraze96@gmail.com>
Wed, 10 Jun 2020 13:44:06 +0000 (09:44 -0400)
gl_rmain.c
snd_main.c

index 0a0ce0671fec98a1da6983c759030d2782bca3b3..d81512b18c7469949dc816e817c27f94d4b632ef 100644 (file)
@@ -2951,6 +2951,7 @@ static int componentorder[4] = {0, 1, 2, 3};
 static rtexture_t *R_LoadCubemap(const char *basename)
 {
        int i, j, cubemapsize, forcefilter;
+       char name[256];
        unsigned char *cubemappixels, *image_buffer;
        rtexture_t *cubemaptexture;
        // HACK: if the cubemap name starts with a !, the cubemap is nearest-filtered
@@ -2960,7 +2961,6 @@ static rtexture_t *R_LoadCubemap(const char *basename)
                basename++;
                forcefilter = TEXF_FORCENEAREST;
        }
-       char name[256];
        // must start 0 so the first loadimagepixels has no requested width/height
        cubemapsize = 0;
        cubemappixels = NULL;
index c7bd33aedccd116d4301d08405f7604194926765..7c5ca3d8e793551938d71187490b4a16823a7950 100644 (file)
@@ -359,7 +359,7 @@ static void S_SoundInfo_f(cmd_state_t *cmd)
        Con_Printf("%5u total_channels\n", total_channels);
 }
 
-void S_PauseSound_f(cmd_state_t *cmd)
+static void S_PauseSound_f(cmd_state_t *cmd)
 {
        if( Cmd_Argc(cmd) != 2 ) {
                Con_Print("pausesound <pause>\n");