diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-12-09 15:11:18 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-12-09 15:11:18 -0500 |
commit | 3550a87360308167d2751f17daa88c8ccd545e73 (patch) | |
tree | 922b89870b6d89a5ff5a5db0328047185080bda5 | |
parent | e485280a8a59e43745d9261b491075e19dbef5f9 (diff) |
Update rgbdscheck.asm
Hard-code the version string in the failure message so it won't be in hex
-rw-r--r-- | rgbdscheck.asm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/rgbdscheck.asm b/rgbdscheck.asm index c980634f1..691356a61 100644 --- a/rgbdscheck.asm +++ b/rgbdscheck.asm @@ -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 |