Skip to content

Commit

Permalink
Scriptrunner: Only stop at splash with R+UP
Browse files Browse the repository at this point in the history
  • Loading branch information
d0k3 committed Apr 26, 2018
1 parent 4d7f047 commit 3bfe2fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arm9/source/godmode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1987,7 +1987,7 @@ u32 GodMode(int entrypoint) {
#else // standard behaviour
bootmenu = bootmenu || (bootloader && CheckButton(BOOTMENU_KEY)); // second check for boot menu keys
#endif
while (CheckButton(BOOTPAUSE_KEY)); // don't continue while these keys is held
while (CheckButton(BOOTPAUSE_KEY)); // don't continue while these keys are held
if (show_splash) while (timer_msec( timer ) < 500); // show splash for at least 0.5 sec

// bootmenu handler
Expand Down Expand Up @@ -2481,7 +2481,7 @@ u32 ScriptRunner(int entrypoint) {
InitNandCrypto(entrypoint != ENTRY_B9S);
InitExtFS();

while (HID_STATE); // wait until no buttons are pressed
while (CheckButton(BOOTPAUSE_KEY)); // don't continue while these keys are held
while (timer_msec( timer ) < 500); // show splash for at least 0.5 sec

if (PathExist("V:/" VRAM0_AUTORUN_GM9)) {
Expand Down

0 comments on commit 3bfe2fc

Please sign in to comment.