shithub: pokecrystal

Download patch

ref: 227005231951bf9adec1935866018878f1a558f3
parent: 016c2baae2a84b9119274e5e4a4443c406793a5d
author: yenatch <[email protected]>
date: Fri Mar 4 08:21:14 EST 2016

Make diacritic labels less confusing in PlaceString.

--- a/home/text.asm
+++ b/home/text.asm
@@ -270,16 +270,17 @@
 	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