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:13 -05:00
parent e5ba485eac
commit 0bfa337355

View File

@@ -1,12 +1,14 @@
; pokegold requires rgbds 0.4.1 or newer.
; pokegold 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 "pokegold requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer."
elif (__RGBDS_MAJOR__ < MAJOR) || \
fail "pokegold 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 "pokegold requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer."
fail "pokegold requires rgbds 0.4.2 or newer."
endc
endc