diff options
author | yenatch <yenatch@gmail.com> | 2016-03-04 13:21:14 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-03-04 13:21:14 -0500 |
commit | 227005231951bf9adec1935866018878f1a558f3 (patch) | |
tree | bd46b4002299ed08136ba40b64189657dbfed015 | |
parent | 016c2baae2a84b9119274e5e4a4443c406793a5d (diff) |
Make diacritic labels less confusing in PlaceString.
-rw-r--r-- | home/text.asm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/home/text.asm b/home/text.asm index 028aec9e0..e0dc5ae9d 100644 --- a/home/text.asm +++ b/home/text.asm @@ -270,16 +270,17 @@ endm dict "<PLAY_G>", PlaceGenderedPlayerName cp "゚" - jr z, .place + jr z, .place ; should be .diacritic cp "゙" - jr z, .place + jr z, .place ; should be .diacritic + jr .not_diacritic - jr .nope +.diacritic ld b, a call Diacritic jp NextChar -.nope +.not_diacritic cp $60 ; Regular characters jr nc, .place |