From 71c5404bfe4631f6ba0272b4a35535c75995453b Mon Sep 17 00:00:00 2001 From: Aurora Date: Sun, 28 Aug 2016 02:41:00 +0200 Subject: [PATCH] Fix derp --- source/firm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/firm.c b/source/firm.c index 321070f..9c0233c 100755 --- a/source/firm.c +++ b/source/firm.c @@ -242,10 +242,10 @@ static inline u32 loadFirm(FirmwareType *firmType, FirmwareSource firmSource) if(!isN3DS && *firmType == NATIVE_FIRM) { - //We can't boot < 2.x SysNANDs and < 3.x EmuNANDs. + //We can't boot < 2.x SysNANDs and < 3.x EmuNANDs if(firmVersion < 0x18) { - if(firmSource == FIRMWARE_SYSNAND && firmVersion < 9) + if(firmSource != FIRMWARE_SYSNAND || firmVersion < 9) error("An old unsupported NAND has been detected.\nLuma3DS is unable to boot it"); *firmType = SAFE_FIRM;