From 3903ac640987ab29984dfb6ace0afd1a419ae494 Mon Sep 17 00:00:00 2001 From: Aurora Wright Date: Tue, 21 Aug 2018 22:07:18 +0200 Subject: [PATCH] Implement https://github.com/AuroraWright/Luma3DS/issues/470 --- source/config.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/config.c b/source/config.c index 14aba086..0dabbf05 100644 --- a/source/config.c +++ b/source/config.c @@ -31,6 +31,7 @@ #include "utils.h" #include "screen.h" #include "draw.h" +#include "emunand.h" #include "buttons.h" #include "pin.h" @@ -196,6 +197,13 @@ void configMenu(bool oldPinStatus, u32 oldPinMode) "GitHub repository!" }; + FirmwareSource nandType = FIRMWARE_SYSNAND; + if(isSdMode) + { + nandType = FIRMWARE_EMUNAND; + locateEmuNand(&nandType); + } + struct multiOption { u32 posXs[4]; u32 posY;