Make static

This commit is contained in:
Lactozilla 2023-10-29 23:42:50 -03:00
parent 6de7fc3223
commit 743926e61e
2 changed files with 2 additions and 5 deletions

View file

@ -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)
{

View file

@ -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);