diff --git a/bootloader/hos/sept.c b/bootloader/hos/sept.c index 0a5ca02..dade7f5 100644 --- a/bootloader/hos/sept.c +++ b/bootloader/hos/sept.c @@ -218,6 +218,7 @@ int reboot_to_sept(const u8 *tsec_fw, u32 kb) (*sept)(); error: + gfx_con.mute = false; EPRINTF("Failed to run sept\n"); btn_wait(); diff --git a/bootloader/main.c b/bootloader/main.c index 8bedb18..d3ff674 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -81,6 +81,7 @@ bool sd_mount() if (!sdmmc_storage_init_sd(&sd_storage, &sd_sdmmc, SDMMC_1, SDMMC_BUS_WIDTH_4, 11)) { + gfx_con.mute = false; EPRINTF("Failed to init SD card.\nMake sure that it is inserted.\nOr that SD reader is properly seated!"); } else @@ -94,6 +95,7 @@ bool sd_mount() } else { + gfx_con.mute = false; EPRINTFARGS("Failed to mount SD card (FatFS Error %d).\nMake sure that a FAT partition exists..", res); } }