summaryrefslogtreecommitdiff
path: root/engine/battle/core.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-10-22 00:53:59 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-10-22 00:53:59 -0400
commit0b6b706ffce6a8bf9af59b5f308d9ee94ef8d172 (patch)
treec1c517ac42b0bf3eeb726c33392322ee0adb2528 /engine/battle/core.asm
parent0ac39546c69bbe3c2c6764cad9529ffab565ddfc (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 666eb9a0..4a580aca 100644
--- a/engine/battle/core.asm
+++ b/engine/battle/core.asm
@@ -8081,7 +8081,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
@@ -8096,35 +8096,35 @@ ReadAndPrintLinkBattleRecord:
push hl
ld h, d
ld l, e
- ld de, wceed
+ 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, wceed
+ ld de, wLinkBattleRecordName
pop hl
call PlaceString
pop hl
ld de, 26
add hl, de
push hl
- ld de, wcef8
+ ld de, wLinkBattleRecordWins
lb bc, 2, 4
call PrintNum
pop hl
ld de, 5
add hl, de
push hl
- ld de, wcefa
+ ld de, wLinkBattleRecordLosses
lb bc, 2, 4
call PrintNum
pop hl
ld de, 5
add hl, de
- ld de, wcefc
+ ld de, wLinkBattleRecordDraws
lb bc, 2, 4
call PrintNum
jr .next