From 147af2ef8df4ee3a3e59c8d7f47a7afda0cab118 Mon Sep 17 00:00:00 2001 From: friedkeenan Date: Tue, 5 May 2020 15:08:19 -0500 Subject: [PATCH] Exit if on <9.0.0 (again) --- source/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/main.c b/source/main.c index 84959ff..b2d7cff 100644 --- a/source/main.c +++ b/source/main.c @@ -343,7 +343,10 @@ void loadNro(void) } int main(int argc, char **argv) -{ +{ + if (hosversionBefore(9,0,0)) + exit(1); + memcpy(g_savedTls, (u8*)armGetTls() + 0x100, 0x100); setupHbHeap();