From 7c377fca946759d09a3fb334a03dedb74f0bb05f Mon Sep 17 00:00:00 2001 From: Drew Date: Wed, 17 Sep 2025 15:35:21 -0500 Subject: [PATCH] Making joker_gfxTiles and joker_gfxPal static --- source/joker.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/joker.c b/source/joker.c index 23ff7ca..2cdb8b8 100644 --- a/source/joker.c +++ b/source/joker.c @@ -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"