mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Update rgbdscheck.asm
Hard-code the version string in the failure message so it won't be in hex
This commit is contained in:
parent
e485280a8a
commit
3550a87360
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user