From 6295559d9cb7589b1a9e20df104fdcb833ab6d43 Mon Sep 17 00:00:00 2001 From: Aurora Date: Fri, 7 Oct 2016 16:14:16 +0200 Subject: [PATCH] Change SAFE_MODE detection for <= 2.1 --- source/firm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/firm.c b/source/firm.c index f5c65a9..40c921c 100755 --- a/source/firm.c +++ b/source/firm.c @@ -308,7 +308,7 @@ static inline u32 loadFirm(FirmwareType *firmType, FirmwareSource firmSource, bo if(firmSource != FIRMWARE_SYSNAND) error("An old unsupported EmuNAND has been detected.\nLuma3DS is unable to boot it."); - if(BOOTCFG_SAFEMODE != 0) error("SAFE_MODE is not supported on 1.x/2.x FIRM."); + if(HID_PAD == SAFE_MODE) error("SAFE_MODE is not supported on 1.x/2.x FIRM."); *firmType = NATIVE_FIRM1X2X; }