shithub: pokecrystal

Download patch

ref: e0b783bb7b9b73ff48b079a50156e0efdbf08be3
parent: 9d6ac04c9d43cdf5587e137878bacaebf89a7158
author: ISSOtm <eldredhabert0@gmail.com>
date: Tue Aug 18 09:41:59 EDT 2020

Enable compatibility with upcoming RGBASM version

This is additionally required, because an `elif`'s condition is evaluated even
when it's about to be skipped over, and this `"\2"` will become an error

--- a/home/text.asm
+++ b/home/text.asm
@@ -192,11 +192,13 @@
 	jr nz, ._\@
 	ld a, \2
 ._\@:
-elif STRSUB("\2", 1, 1) == "."
-; Locals can use a short jump
-	jr z, \2
 else
+	if STRSUB("\2", 1, 1) == "."
+	; Locals can use a short jump
+	jr z, \2
+	else
 	jp z, \2
+	endc
 endc
 ENDM