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/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index ff2478e90..1611a5fe2 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -408,7 +408,7 @@ This makes the Berserk Gene use the regular confusion duration (2–5 turns). **Fix:** -First, edit [wram.asm](https://github.com/pret/pokecrystal/blob/master/wram.asm): +First, edit [wram.asm](https://github.com/pret/pokecrystal/blob/master/ram/wram.asm): ```diff wTurnEnded:: db diff --git a/engine/rtc/timeset.asm b/engine/rtc/timeset.asm index f42b9d632..725706011 100644 --- a/engine/rtc/timeset.asm +++ b/engine/rtc/timeset.asm @@ -506,7 +506,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 4dfd9722e..5c4c5ea58 100644 --- a/home/vblank.asm +++ b/home/vblank.asm @@ -35,7 +35,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 f735b2f0a..5d4c1c38d 100644 --- a/includes.asm +++ b/includes.asm @@ -24,7 +24,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"