Skip to content

Commit 6ff1031

Browse files
snd_mix.c: Made more globals static
1 parent 017b6a4 commit 6ff1031

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Quake/snd_mix.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2424
#include "quakedef.h"
2525

2626
#define PAINTBUFFER_SIZE 2048
27-
portable_samplepair_t paintbuffer[PAINTBUFFER_SIZE];
28-
int snd_scaletable[32][256];
29-
int *snd_p, snd_linear_count;
30-
short *snd_out;
27+
static portable_samplepair_t paintbuffer[PAINTBUFFER_SIZE];
28+
static int snd_scaletable[32][256];
29+
static int *snd_p, snd_linear_count;
30+
static short *snd_out;
3131

32-
static int snd_vol;
32+
static int snd_vol;
3333

3434
static float snd_lofreqlevel;
3535
static float snd_hifreqlevel;

0 commit comments

Comments
 (0)