From d88136cb3492664e7e9e1139f4436313afe53737 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Thu, 26 May 2022 16:39:39 -0500 Subject: [PATCH] Derp fix, was always showing TMD warning --- arm9/src/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/src/install.c b/arm9/src/install.c index 9606e3d..259b612 100644 --- a/arm9/src/install.c +++ b/arm9/src/install.c @@ -492,7 +492,7 @@ bool install(char* fpath, bool systemTitle) else goto error; } - else if(!sdnandMode) + else if(!sdnandMode && access(tmdPath, F_OK) != 0) { if (choicePrint("TMD not found, game cannot be\nplayed without Unlaunch's\nlauncher patches.\nSee wiki for how to get a TMD.\n\nInstall anyway?") == YES) tmdFound = false;