From 3550a87360308167d2751f17daa88c8ccd545e73 Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 9 Dec 2020 15:11:18 -0500 Subject: [PATCH] Update rgbdscheck.asm Hard-code the version string in the failure message so it won't be in hex --- rgbdscheck.asm | 12 +++++++----- 1 file 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