From d23cd5acd51776cb7fc38ced9db23effd432654b Mon Sep 17 00:00:00 2001 From: Aurora Date: Thu, 24 Mar 2016 17:24:16 +0100 Subject: [PATCH] More logical this way --- source/firm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/firm.c b/source/firm.c index 5d91973..6f1730c 100755 --- a/source/firm.c +++ b/source/firm.c @@ -76,14 +76,14 @@ void setupCFW(void){ if(needConfig){ + if(a9lhSetup && pressed == SAFE_MODE) + error("Using Safe Mode would brick you, or remove A9LH!"); + /* If L and one of the payload buttons are pressed, and if not using A9LH the Safe Mode combo is not pressed, chainload an external payload */ if((pressed & BUTTON_L1) && (pressed & PAYLOAD_BUTTONS) && pressed != SAFE_MODE) loadPayload(); - if(a9lhSetup && pressed == SAFE_MODE) - error("Using Safe Mode would brick you, or remove A9LH!"); - //If no configuration file exists or SELECT is held, load configuration menu if(needConfig == 2 || (pressed & BUTTON_SELECT)) configureCFW(configPath);