From a45f8293d980d6a2a7b41fff96f640e5c2fe1e0d Mon Sep 17 00:00:00 2001 From: Aurora Date: Tue, 29 Nov 2016 19:51:07 +0100 Subject: [PATCH] Fix small derp --- source/firm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/firm.c b/source/firm.c index afee52f..4b38eda 100755 --- a/source/firm.c +++ b/source/firm.c @@ -364,7 +364,7 @@ void launchFirm(FirmwareType firmType, bool loadFromStorage) { //Allow module injection and/or inject 3ds_injector on new NATIVE_FIRMs and LGY FIRMs u32 sectionNum; - if(firmType == NATIVE_FIRM || (loadFromStorage && firmType != SAFE_FIRM && firmType != NATIVE_FIRM1X2X)) + if(firmType == NATIVE_FIRM || (loadFromStorage && (firmType == TWL_FIRM || firmType == AGB_FIRM))) { copySection0AndInjectSystemModules(firmType, loadFromStorage); sectionNum = 1;