summaryrefslogtreecommitdiff
path: root/engine/link.asm
diff options
context:
space:
mode:
authorAdelaide Walter <adelaidekwalter@gmail.com>2018-01-03 00:19:54 -0500
committerAdelaide Walter <adelaidekwalter@gmail.com>2018-01-03 00:19:54 -0500
commit51106cccd02ba305b1aa12b644f5a0e9193fd555 (patch)
tree91db95e90332c8dde498ec8baeae2f23ae0c31f5 /engine/link.asm
parentfb825a800e44c0795225949658b58a0522a9c998 (diff)
Scrub WRAM addresses from comments & use WRAM1_Begin where appropriate.
Diffstat (limited to 'engine/link.asm')
-rwxr-xr-xengine/link.asm7
1 files changed, 0 insertions, 7 deletions
diff --git a/engine/link.asm b/engine/link.asm
index 5c45707d7..30d775350 100755
--- a/engine/link.asm
+++ b/engine/link.asm
@@ -811,31 +811,24 @@ Link_PrepPartyData_Gen2: ; 28595
inc de
dec b
jr nz, .loop1
- ; de = $c806
ld hl, PlayerName
ld bc, NAME_LENGTH
call CopyBytes
- ; de = $c811
ld hl, PartyCount
ld bc, 1 + PARTY_LENGTH + 1
call CopyBytes
- ; de = $c819
ld hl, PlayerID
ld bc, 2
call CopyBytes
- ; de = $c81b
ld hl, PartyMon1Species
ld bc, PARTY_LENGTH * PARTYMON_STRUCT_LENGTH
call CopyBytes
- ; de = $c93b
ld hl, PartyMonOT
ld bc, PARTY_LENGTH * NAME_LENGTH
call CopyBytes
- ; de = $c97d
ld hl, PartyMonNicknames
ld bc, PARTY_LENGTH * PKMN_NAME_LENGTH
call CopyBytes
- ; de = $c9bf
; Okay, we did all that. Now, are we in the trade center?
ld a, [wLinkMode]