Skip to content

Commit

Permalink
Increase post-ntrboot delay
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraWright committed Aug 20, 2017
1 parent 65e93cb commit f5e90ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stage2/arm9/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void main(void)

/* Wait until buttons are not held, for compatibility. */
while(HID_PAD & NTRBOOT_BUTTONS);
wait(1000ULL);
wait(2000ULL);
}

loadFirm(false);
Expand All @@ -98,7 +98,7 @@ void main(void)
if(HID_PAD == NTRBOOT_BUTTONS)
{
while(HID_PAD & NTRBOOT_BUTTONS);
wait(1000ULL);
wait(2000ULL);
}
loadFirm(true);
}
Expand Down

0 comments on commit f5e90ac

Please sign in to comment.