Skip to content

Commit 23183bb

Browse files
committed
Rename wram_constants.asm to ram_constants.asm
1 parent de0d5c2 commit 23183bb

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed
File renamed without changes.

docs/bugs_and_glitches.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ This makes the Berserk Gene use the regular confusion duration (2–5 turns).
408408

409409
**Fix:**
410410

411-
First, edit [wram.asm](https://github.com/pret/pokecrystal/blob/master/wram.asm):
411+
First, edit [wram.asm](https://github.com/pret/pokecrystal/blob/master/ram/wram.asm):
412412

413413
```diff
414414
wTurnEnded:: db

engine/rtc/timeset.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ SetDayOfWeek:
506506
ret
507507

508508
.WeekdayStrings:
509-
; entries correspond to wCurDay constants (see constants/wram_constants.asm)
509+
; entries correspond to wCurDay constants (see constants/ram_constants.asm)
510510
dw .Sunday
511511
dw .Monday
512512
dw .Tuesday

home/vblank.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ VBlank::
3535
reti
3636

3737
VBlankHandlers:
38-
; entries correspond to VBLANK_* constants (see constants/wram_constants.asm)
38+
; entries correspond to VBLANK_* constants (see constants/ram_constants.asm)
3939
table_width 2, VBlankHandlers
4040
dw VBlank_Normal
4141
dw VBlank_Cutscene

includes.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ INCLUDE "macros/legacy.asm"
2424

2525
INCLUDE "constants/hardware_constants.asm"
2626
INCLUDE "constants/deco_constants.asm"
27-
INCLUDE "constants/wram_constants.asm"
27+
INCLUDE "constants/ram_constants.asm"
2828
INCLUDE "constants/misc_constants.asm"
2929
INCLUDE "constants/input_constants.asm"
3030
INCLUDE "constants/gfx_constants.asm"

0 commit comments

Comments
 (0)