summaryrefslogtreecommitdiff
path: root/engine/link.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2018-01-14 23:00:22 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2018-01-14 23:00:22 -0500
commitdfcca93b451cecb6857f8b6bc6b9f67e997b09c9 (patch)
treeacf41a46e600fa3452536f97dc3f934968b3c839 /engine/link.asm
parent5c28d05bb40b47f084a34eb732da92c899e18db6 (diff)
parent6c5cd7a963fb2b5eed109aeef25f041eabba0004 (diff)
Merge branch 'dev' of https://github.com/TheMostCuriousThing/pokecrystal (resolve PR #460)
# Conflicts: # engine/battle/core.asm # engine/save.asm
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 034151726..0f17f1305 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]