Update rgbdscheck.asm

Hard-code the version string in the failure message so it won't be in hex
This commit is contained in:
Rangi 2020-12-09 15:11:18 -05:00
parent e485280a8a
commit 3550a87360

View File

@ -1,12 +1,14 @@
; pokecrystal requires rgbds 0.4.1 or newer.
; pokecrystal requires rgbds 0.4.2 or newer.
MAJOR EQU 0
MINOR EQU 4
PATCH EQU 1
PATCH EQU 2
if !DEF(__RGBDS_MAJOR__) || !DEF(__RGBDS_MINOR__) || !DEF(__RGBDS_PATCH__)
fail "pokecrystal requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer."
elif (__RGBDS_MAJOR__ < MAJOR) || \
fail "pokecrystal requires rgbds 0.4.2 or newer."
else
if (__RGBDS_MAJOR__ < MAJOR) || \
(__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ < MINOR) || \
(__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ == MINOR && __RGBDS_PATCH__ < PATCH)
fail "pokecrystal requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer."
fail "pokecrystal requires rgbds 0.4.2 or newer."
endc
endc