diff --git a/source/main.cpp b/source/main.cpp index 91ae2fc..3248f8a 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -42,6 +42,12 @@ int32_t main(int32_t argc, char **argv) { initExternalStorage(); + // Use librpxloader. + RPXLoaderStatus error3; + if ((error3 = RPXLoader_InitLibrary()) != RPX_LOADER_RESULT_SUCCESS) { + DEBUG_FUNCTION_LINE_ERR("AutobootModule: Failed to init RPXLoader. This can be ignored when not running Aroma. Error %s [%d]", RPXLoader_GetStatusStr(error3), error3); + } + if (getQuickBoot()) { deinitLogging(); return 0; @@ -51,12 +57,6 @@ int32_t main(int32_t argc, char **argv) { OSFatal("AutobootModule: Mocha_InitLibrary failed"); } - // Use librpxloader. - RPXLoaderStatus error3; - if ((error3 = RPXLoader_InitLibrary()) != RPX_LOADER_RESULT_SUCCESS) { - DEBUG_FUNCTION_LINE("AutobootModule: Failed to init RPXLoader. This can be ignored when not running Aroma. Error %s [%d]", RPXLoader_GetStatusStr(error3), error3); - } - InputUtils::InputData buttons = InputUtils::getControllerInput(); FSAInit();