diff options
author | yenatch <yenatch@gmail.com> | 2015-10-13 19:23:12 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-10-13 19:23:12 -0400 |
commit | d5f94e9ee5a2f5ec8fb26c29d74c02531fc79c5a (patch) | |
tree | 003a0d9a296095020d110e3cdc6b2127a3e20e38 /home/text.asm | |
parent | 7176eff7aafda5378305a593c459d158ac27601f (diff) | |
parent | d338a092c5a54d73e3e0a186569cc3b84e61c4ae (diff) |
Merge pull request #320 from PikalaxALT/master
More labels, including fns responsible for partymon generation
Diffstat (limited to 'home/text.asm')
-rw-r--r-- | home/text.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/text.asm b/home/text.asm index fdbafec22..79f85d38b 100644 --- a/home/text.asm +++ b/home/text.asm @@ -16,7 +16,7 @@ ClearBox:: ; fb6 ld a, " " -Functionfb8:: +FillBoxWithByte:: .col push bc push hl @@ -273,7 +273,7 @@ endm dict $24, PlacePOKE dict $25, NextChar dict2 $1f, " " - dict $5f, Char5F + dict "<DEXEND>", PlaceDexEnd dict "<TARGET>", PlaceMoveTargetsName dict "<USER>", PlaceMoveUsersName dict "<ENEMY>", PlaceEnemysName @@ -590,7 +590,7 @@ ContText:: ; 1345 ; 1356 -Char5F:: ; 1356 +PlaceDexEnd:: ; 1356 ; Legacy: ends a Pokédex entry (Red). ; Dex entries are now regular strings. ld [hl], "." @@ -972,7 +972,7 @@ Text_09:: ; 14d2 ld a, b and $f0 swap a - set 6, a + set PRINTNUM_RIGHTALIGN_F, a ld b, a call PrintNum ld b, h |