diff --git a/constants/wram_constants.asm b/constants/ram_constants.asm similarity index 100% rename from constants/wram_constants.asm rename to constants/ram_constants.asm diff --git a/engine/rtc/timeset.asm b/engine/rtc/timeset.asm index f594f290..179ff186 100644 --- a/engine/rtc/timeset.asm +++ b/engine/rtc/timeset.asm @@ -501,7 +501,7 @@ SetDayOfWeek: ret .WeekdayStrings: -; entries correspond to wCurDay constants (see constants/wram_constants.asm) +; entries correspond to wCurDay constants (see constants/ram_constants.asm) dw .Sunday dw .Monday dw .Tuesday diff --git a/home/vblank.asm b/home/vblank.asm index b4992728..969d42c6 100644 --- a/home/vblank.asm +++ b/home/vblank.asm @@ -38,7 +38,7 @@ VBlank:: reti VBlankHandlers: -; entries correspond to VBLANK_* constants (see constants/wram_constants.asm) +; entries correspond to VBLANK_* constants (see constants/ram_constants.asm) table_width 2, VBlankHandlers dw VBlank_Normal dw VBlank_Cutscene diff --git a/includes.asm b/includes.asm index 01c27ca3..e9698f2c 100644 --- a/includes.asm +++ b/includes.asm @@ -23,7 +23,7 @@ INCLUDE "macros/legacy.asm" INCLUDE "constants/hardware_constants.asm" INCLUDE "constants/deco_constants.asm" -INCLUDE "constants/wram_constants.asm" +INCLUDE "constants/ram_constants.asm" INCLUDE "constants/misc_constants.asm" INCLUDE "constants/input_constants.asm" INCLUDE "constants/gfx_constants.asm"