Increase splash duration

Partial fix for #550
This commit is contained in:
d0k3 2019-10-20 22:57:36 +02:00
parent 1ceba1ed6f
commit 2b05453685

View File

@ -2175,7 +2175,7 @@ u32 GodMode(int entrypoint) {
bootmenu = bootmenu || (bootloader && CheckButton(BOOTMENU_KEY)); // second check for boot menu keys bootmenu = bootmenu || (bootloader && CheckButton(BOOTMENU_KEY)); // second check for boot menu keys
#endif #endif
while (CheckButton(BOOTPAUSE_KEY)); // don't continue while these keys are 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 if (show_splash) while (timer_msec( timer ) < 1000); // show splash for at least 1 sec
// bootmenu handler // bootmenu handler
if (bootmenu) { if (bootmenu) {