diff options
author | Thomas Winwood <twwinwood@gmail.com> | 2018-07-21 02:06:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-21 02:06:31 +0100 |
commit | 23ef2f50a7b94c23b50e9e690a7482ac349c9ef3 (patch) | |
tree | 63c20c67efbdf8334c6e273f78065b83135e3886 /home/mon_data_2.asm | |
parent | 17a4d0540acc00e3f5ad260009115eb36e72b7d2 (diff) | |
parent | 2d73d040d16a7836f935a7a6cb2a311aed2ca5a2 (diff) |
Merge branch 'master' into the-diffening
Diffstat (limited to 'home/mon_data_2.asm')
-rw-r--r-- | home/mon_data_2.asm | 9 |
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 |