Replace "¯" and "%" (breakable whitespace) with more meaningful charmap names (#1094)

This commit is contained in:
SnorlaxMonster
2023-11-20 12:04:45 +11:00
committed by GitHub
parent 05083d6fd2
commit a82dfd81bb
11 changed files with 77 additions and 73 deletions

View File

@@ -4,9 +4,9 @@ TownMap_ConvertLineBreakCharacters:
ld a, [hl]
cp "@"
jr z, .end
cp "%"
cp "<WBR>"
jr z, .line_feed
cp "¯"
cp "<BSP>"
jr z, .line_feed
inc hl
jr .loop