mirror of https://github.com/pret/pokecrystal.git
Rename wram_constants.asm to ram_constants.asm
This commit is contained in:
parent
de0d5c29e5
commit
23183bb9bb
|
@ -408,7 +408,7 @@ This makes the Berserk Gene use the regular confusion duration (2–5 turns).
|
||||||
|
|
||||||
**Fix:**
|
**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
|
```diff
|
||||||
wTurnEnded:: db
|
wTurnEnded:: db
|
||||||
|
|
|
@ -506,7 +506,7 @@ SetDayOfWeek:
|
||||||
ret
|
ret
|
||||||
|
|
||||||
.WeekdayStrings:
|
.WeekdayStrings:
|
||||||
; entries correspond to wCurDay constants (see constants/wram_constants.asm)
|
; entries correspond to wCurDay constants (see constants/ram_constants.asm)
|
||||||
dw .Sunday
|
dw .Sunday
|
||||||
dw .Monday
|
dw .Monday
|
||||||
dw .Tuesday
|
dw .Tuesday
|
||||||
|
|
|
@ -35,7 +35,7 @@ VBlank::
|
||||||
reti
|
reti
|
||||||
|
|
||||||
VBlankHandlers:
|
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
|
table_width 2, VBlankHandlers
|
||||||
dw VBlank_Normal
|
dw VBlank_Normal
|
||||||
dw VBlank_Cutscene
|
dw VBlank_Cutscene
|
||||||
|
|
|
@ -24,7 +24,7 @@ INCLUDE "macros/legacy.asm"
|
||||||
|
|
||||||
INCLUDE "constants/hardware_constants.asm"
|
INCLUDE "constants/hardware_constants.asm"
|
||||||
INCLUDE "constants/deco_constants.asm"
|
INCLUDE "constants/deco_constants.asm"
|
||||||
INCLUDE "constants/wram_constants.asm"
|
INCLUDE "constants/ram_constants.asm"
|
||||||
INCLUDE "constants/misc_constants.asm"
|
INCLUDE "constants/misc_constants.asm"
|
||||||
INCLUDE "constants/input_constants.asm"
|
INCLUDE "constants/input_constants.asm"
|
||||||
INCLUDE "constants/gfx_constants.asm"
|
INCLUDE "constants/gfx_constants.asm"
|
||||||
|
|
Loading…
Reference in New Issue