From 903789cf6e4c3b5b0e2eab9540ce0854ef679b44 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 4 Dec 2018 04:01:22 -0800 Subject: [PATCH] fusee: fix error printing pre-SD card init (closes #289). --- fusee/fusee-primary/src/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fusee/fusee-primary/src/main.c b/fusee/fusee-primary/src/main.c index 9c5e81def..c54862ba8 100644 --- a/fusee/fusee-primary/src/main.c +++ b/fusee/fusee-primary/src/main.c @@ -108,7 +108,7 @@ static void setup_env(void) { /* Set up the exception handlers. */ setup_exception_handlers(); - + /* Mount the SD card. */ mount_sd(); } @@ -133,6 +133,9 @@ int main(void) { uint32_t stage2_version = 0; ScreenLogLevel log_level = SCREEN_LOG_LEVEL_MANDATORY; + /* Override the global logging level. */ + log_set_log_level(log_level); + /* Initialize the display, console, etc. */ setup_env(); @@ -144,9 +147,6 @@ int main(void) { fatal_error("Failed to parse BCT.ini!\n"); } - /* Override the global logging level. */ - log_set_log_level(log_level); - /* Say hello. */ print(SCREEN_LOG_LEVEL_MANDATORY, "Welcome to Atmosph\xe8re Fus\xe9" "e!\n"); print(SCREEN_LOG_LEVEL_DEBUG, "Using color linear framebuffer at 0x%p!\n", g_framebuffer);