Skip to content

Commit

Permalink
Not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraWright committed Mar 5, 2016
1 parent 42cbead commit 9ab6d10
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions source/firm.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ void setupCFW(void){

//Always force a sysNAND boot when quitting AGB_FIRM
if(*(u8*)0x10010000 == 0x7) {
mode = updatedSys ? 1 : (tempConfig & 0x1);
emuNAND = 0;
if(!updatedSys) mode = tempConfig & 0x1;
overrideConfig = 1;
//Else, force the last boot options unless A is pressed
} else if(!(pressed & BUTTON_A)) {
Expand Down Expand Up @@ -85,7 +84,7 @@ void setupCFW(void){
if(fileExists("/rei/usepatchedfw")){
//Only needed with this flag
if(!mode) firmPathPatched = "/rei/patched_firmware90.bin";
if (fileExists(firmPathPatched)) usePatchedFirm = 1;
if(fileExists(firmPathPatched)) usePatchedFirm = 1;
}
}

Expand Down

0 comments on commit 9ab6d10

Please sign in to comment.