diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-08-21 16:27:04 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-08-21 16:27:04 -0400 |
commit | a775ff15062bedcd05d852ba62b711141f75e245 (patch) | |
tree | af21c3a8ffd93cd218b4968013e8aed284b60212 /home.asm | |
parent | 631393caae17541cbb363e5e019fb77a4a7f31a5 (diff) |
Label some known WRAM labels from pokecrystal.
Diffstat (limited to 'home.asm')
-rw-r--r-- | home.asm | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1600,7 +1600,7 @@ PrepMonFrontpic:: ld a, $1 ld [wcf3b], a PrepMonFrontpic_:: - ld a, [wd004] + ld a, [wCurPartySpecies] and a jr z, .not_pokemon cp EGG @@ -1624,7 +1624,7 @@ PrepMonFrontpic_:: xor a ld [wcf3b], a inc a - ld [wd004], a + ld [wCurPartySpecies], a ret INCLUDE "home/cry.asm" @@ -1704,7 +1704,7 @@ GetBaseData:: ret GetCurNick:: - ld a, [wd005] + ld a, [wCurPartyMon] ld hl, wPartyMon1Nickname GetNick:: push hl @@ -1790,7 +1790,7 @@ GetPartyParamLocation:: ld c, a ld b, $0 add hl, bc - ld a, [wd005] + ld a, [wCurPartyMon] call GetPartyLocation pop bc ret |