summaryrefslogtreecommitdiff
path: root/home/mon_data_2.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2018-06-24 19:54:03 -0400
committerGitHub <noreply@github.com>2018-06-24 19:54:03 -0400
commit0cbe04da44744073c4c164df970b1571b1fda1a6 (patch)
tree3af0a92f5f7dc10f32eed04d9daae52749fc33c2 /home/mon_data_2.asm
parent131875d3e37044ec995287af7c93decd86a0d659 (diff)
parent1d9a68dbdd0132035f1fc7b7ea8f7fdc24741507 (diff)
Merge pull request #531 from mid-kid/master
Remove all address comments
Diffstat (limited to 'home/mon_data_2.asm')
-rw-r--r--home/mon_data_2.asm9
1 files changed, 3 insertions, 6 deletions
diff --git a/home/mon_data_2.asm b/home/mon_data_2.asm
index a5e46d836..99169eaa8 100644
--- a/home/mon_data_2.asm
+++ b/home/mon_data_2.asm
@@ -1,4 +1,4 @@
-GetPartyParamLocation:: ; 3917
+GetPartyParamLocation::
; Get the location of parameter a from wCurPartyMon in hl
push bc
ld hl, wPartyMons
@@ -9,15 +9,13 @@ GetPartyParamLocation:: ; 3917
call GetPartyLocation
pop bc
ret
-; 3927
-GetPartyLocation:: ; 3927
+GetPartyLocation::
; Add the length of a PartyMon struct to hl a times.
ld bc, PARTYMON_STRUCT_LENGTH
jp AddNTimes
-; 392d
-Unreferenced_GetDexNumber:: ; 392d
+Unreferenced_GetDexNumber::
; Probably used in gen 1 to convert index number to dex number
; Not required in gen 2 because index number == dex number
push hl
@@ -34,4 +32,3 @@ Unreferenced_GetDexNumber:: ; 392d
ld c, h
pop hl
ret
-; 3945