mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-02 06:23:03 +00:00
Make static
This commit is contained in:
parent
6de7fc3223
commit
743926e61e
2 changed files with 2 additions and 5 deletions
|
@ -17,8 +17,8 @@
|
|||
|
||||
#include <errno.h>
|
||||
|
||||
remaptable_t **paletteremaps = NULL;
|
||||
unsigned numpaletteremaps = 0;
|
||||
static remaptable_t **paletteremaps = NULL;
|
||||
static unsigned numpaletteremaps = 0;
|
||||
|
||||
void PaletteRemap_Init(void)
|
||||
{
|
||||
|
|
|
@ -17,9 +17,6 @@ typedef struct
|
|||
unsigned num_entries;
|
||||
} remaptable_t;
|
||||
|
||||
extern remaptable_t **paletteremaps;
|
||||
extern unsigned numpaletteremaps;
|
||||
|
||||
void PaletteRemap_Init(void);
|
||||
remaptable_t *PaletteRemap_New(void);
|
||||
remaptable_t *PaletteRemap_Copy(remaptable_t *tr);
|
||||
|
|
Loading…
Reference in a new issue