Making joker_gfxTiles and joker_gfxPal static

This commit is contained in:
Drew
2025-09-17 15:35:21 -05:00
parent c4e804234b
commit 7c377fca94
+2 -2
View File
@@ -15,13 +15,13 @@
#define NUM_JOKERS_PER_SPRITESHEET 2
#define MAX_JOKERS 15
const unsigned int *joker_gfxTiles[MAX_JOKERS] =
static const unsigned int *joker_gfxTiles[MAX_JOKERS] =
{
#define DEF_JOKER_GFX(idx) joker_gfx##idx##Tiles,
#include "../include/joker_table.h"
#undef DEF_JOKER_GFX
};
const unsigned short *joker_gfxPal[MAX_JOKERS] =
static const unsigned short *joker_gfxPal[MAX_JOKERS] =
{
#define DEF_JOKER_GFX(idx) joker_gfx##idx##Pal,
#include "../include/joker_table.h"