Skip to content

Commit

Permalink
Rename wram_constants.asm to ram_constants.asm
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed May 23, 2024
1 parent de0d5c2 commit 23183bb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/bugs_and_glitches.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion engine/rtc/timeset.asm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion home/vblank.asm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion includes.asm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 23183bb

Please sign in to comment.