mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
fusee: Unmount *after* reading the splash screen.
This commit is contained in:
parent
58a42be38f
commit
abf57d2e43
1 changed files with 3 additions and 3 deletions
|
@ -381,9 +381,6 @@ void nxboot_main(void) {
|
|||
}
|
||||
free(package2);
|
||||
|
||||
/* Unmount everything. */
|
||||
nxfs_unmount_all();
|
||||
|
||||
/* Clear used keyslots. */
|
||||
clear_aes_keyslot(KEYSLOT_SWITCH_PACKAGE2KEY);
|
||||
clear_aes_keyslot(KEYSLOT_SWITCH_RNGKEY);
|
||||
|
@ -426,6 +423,9 @@ void nxboot_main(void) {
|
|||
/* Display splash screen. */
|
||||
display_splash_screen_bmp(loader_ctx->custom_splash_path);
|
||||
|
||||
/* Unmount everything. */
|
||||
nxfs_unmount_all();
|
||||
|
||||
/* Turn off the backlight. */
|
||||
display_backlight(false);
|
||||
|
||||
|
|
Loading…
Reference in a new issue