diff options
Diffstat (limited to 'engine/battle/link_battle_versus_text.asm')
-rw-r--r-- | engine/battle/link_battle_versus_text.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/battle/link_battle_versus_text.asm b/engine/battle/link_battle_versus_text.asm index 76559117..9e5f89cb 100644 --- a/engine/battle/link_battle_versus_text.asm +++ b/engine/battle/link_battle_versus_text.asm @@ -3,7 +3,7 @@ DisplayLinkBattleVersusTextBox: call LoadTextBoxTilePatterns coord hl, 3, 4 ld b, 7 - ld c, 12 + ld c, 13 call TextBoxBorder coord hl, 4, 5 ld de, wPlayerName @@ -13,9 +13,9 @@ DisplayLinkBattleVersusTextBox: call PlaceString ; place bold "VS" tiles between the names coord hl, 9, 8 - ld a, $69 - ld [hli], a - ld [hl], $6a + ld a, "V" + ldi [hl], a + ld [hl], "S" xor a ld [wUpdateSpritesEnabled], a callab SetupPlayerAndEnemyPokeballs |