mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Make diacritic labels less confusing in PlaceString.
This commit is contained in:
parent
016c2baae2
commit
2270052319
@ -270,16 +270,17 @@ endm
|
|||||||
dict "<PLAY_G>", PlaceGenderedPlayerName
|
dict "<PLAY_G>", PlaceGenderedPlayerName
|
||||||
|
|
||||||
cp "゚"
|
cp "゚"
|
||||||
jr z, .place
|
jr z, .place ; should be .diacritic
|
||||||
cp "゙"
|
cp "゙"
|
||||||
jr z, .place
|
jr z, .place ; should be .diacritic
|
||||||
|
jr .not_diacritic
|
||||||
|
|
||||||
jr .nope
|
.diacritic
|
||||||
ld b, a
|
ld b, a
|
||||||
call Diacritic
|
call Diacritic
|
||||||
jp NextChar
|
jp NextChar
|
||||||
.nope
|
|
||||||
|
|
||||||
|
.not_diacritic
|
||||||
cp $60 ; Regular characters
|
cp $60 ; Regular characters
|
||||||
jr nc, .place
|
jr nc, .place
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user