From 0fc938c746b862917b198f90fc8f584211e210e3 Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Wed, 22 Nov 2023 20:55:47 -0500 Subject: [PATCH] charmap.asm should come first so other files can use them --- includes.asm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes.asm b/includes.asm index 8fb9da214..f735b2f0a 100644 --- a/includes.asm +++ b/includes.asm @@ -1,3 +1,5 @@ +INCLUDE "constants/charmap.asm" + INCLUDE "macros/asserts.asm" INCLUDE "macros/const.asm" INCLUDE "macros/predef.asm" @@ -20,7 +22,6 @@ INCLUDE "macros/scripts/pic_anims.asm" INCLUDE "macros/legacy.asm" -INCLUDE "constants/charmap.asm" INCLUDE "constants/hardware_constants.asm" INCLUDE "constants/deco_constants.asm" INCLUDE "constants/wram_constants.asm"