diff --git a/source/QuickStartUtils.cpp b/source/QuickStartUtils.cpp index 4ec20dd..0e4df38 100644 --- a/source/QuickStartUtils.cpp +++ b/source/QuickStartUtils.cpp @@ -112,7 +112,7 @@ private: FSCmdBlock mCmdBlock{}; }; -bool getQuickBoot() { +bool launchQuickStartTitle() { // Waits until the quick start menu has been closed. TODO: abort this checks after a given time? auto bootCheck = CCRSysCaffeineBootCheck(); if (bootCheck == 0) { diff --git a/source/QuickStartUtils.h b/source/QuickStartUtils.h index a9052ca..6364a7f 100644 --- a/source/QuickStartUtils.h +++ b/source/QuickStartUtils.h @@ -1,3 +1,3 @@ #pragma once -bool getQuickBoot(); \ No newline at end of file +bool launchQuickStartTitle(); \ No newline at end of file diff --git a/source/main.cpp b/source/main.cpp index 3248f8a..f63a325 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -48,7 +48,7 @@ int32_t main(int32_t argc, char **argv) { 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()) { + if (launchQuickStartTitle()) { deinitLogging(); return 0; }