summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-08-21 16:27:04 -0400
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-08-21 16:27:04 -0400
commita775ff15062bedcd05d852ba62b711141f75e245 (patch)
treeaf21c3a8ffd93cd218b4968013e8aed284b60212 /home.asm
parent631393caae17541cbb363e5e019fb77a4a7f31a5 (diff)
Label some known WRAM labels from pokecrystal.
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home.asm b/home.asm
index 4a81dc4b..233d76cd 100644
--- a/home.asm
+++ b/home.asm
@@ -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