summaryrefslogtreecommitdiff
path: root/engine/battle/core.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-10-22 00:53:54 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-10-22 00:53:54 -0400
commitae4fe08084f3c3c5775bc286bcc630f2c20af083 (patch)
tree15c27cf935ac7fc4e63d899eff1270b9d4c9bc5f /engine/battle/core.asm
parent3a2932cec1e8cb4ef4fb3dbabf24e341d03c7bbe (diff)
Identify some more labels (a few link-related)
Diffstat (limited to 'engine/battle/core.asm')
-rw-r--r--engine/battle/core.asm14
1 files changed, 7 insertions, 7 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm
index 218fbeb75..85cba5f85 100644
--- a/engine/battle/core.asm
+++ b/engine/battle/core.asm
@@ -8470,7 +8470,7 @@ ReadAndPrintLinkBattleRecord:
call .PrintBattleRecord
hlcoord 0, 8
ld b, NUM_LINK_BATTLE_RECORDS
- ld de, sLinkBattleRecord + 2
+ ld de, sLinkBattleRecord1Name
.loop
push bc
push hl
@@ -8485,35 +8485,35 @@ ReadAndPrintLinkBattleRecord:
push hl
ld h, d
ld l, e
- ld de, wd002
+ ld de, wLinkBattleRecordName
ld bc, NAME_LENGTH - 1
call CopyBytes
ld a, "@"
ld [de], a
- inc de
+ inc de ; wLinkBattleRecordWins
ld bc, 6
call CopyBytes
- ld de, wd002
+ ld de, wLinkBattleRecordName
pop hl
call PlaceString
pop hl
ld de, 26
add hl, de
push hl
- ld de, wd00d
+ ld de, wLinkBattleRecordWins
lb bc, 2, 4
call PrintNum
pop hl
ld de, 5
add hl, de
push hl
- ld de, wd00f
+ ld de, wLinkBattleRecordLosses
lb bc, 2, 4
call PrintNum
pop hl
ld de, 5
add hl, de
- ld de, wd011
+ ld de, wLinkBattleRecordDraws
lb bc, 2, 4
call PrintNum
jr .next