From 68c06b8687751a55115eddc6b088d975a753f0aa Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Mon, 26 Oct 2020 21:46:48 -0600 Subject: [PATCH] Use B4DS, if GM9i runs in DS mode --- arm9/source/file_browse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/file_browse.cpp b/arm9/source/file_browse.cpp index 4819538..361467c 100644 --- a/arm9/source/file_browse.cpp +++ b/arm9/source/file_browse.cpp @@ -298,7 +298,7 @@ FileOperation fileBrowse_A(DirEntry* entry, char path[PATH_MAX]) { // TODO Something less hacky lol chdir("/_nds"); // TODO Read header and check for homebrew flag, based on that runNdsFile nds-bootstrap(-hb)-release - entry->name = "nds-bootstrap-release.nds"; + entry->name = isDSiMode() ? "nds-bootstrap-release.nds" : "b4ds-release.nds"; applaunch = true; return FileOperation::bootFile; break;