Rename getQuickBoot to launchQuickStartTitle

This commit is contained in:
Maschell 2024-04-26 10:32:27 +02:00
parent 75d91030c2
commit d3c1515903
3 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ private:
FSCmdBlock mCmdBlock{}; FSCmdBlock mCmdBlock{};
}; };
bool getQuickBoot() { bool launchQuickStartTitle() {
// Waits until the quick start menu has been closed. TODO: abort this checks after a given time? // Waits until the quick start menu has been closed. TODO: abort this checks after a given time?
auto bootCheck = CCRSysCaffeineBootCheck(); auto bootCheck = CCRSysCaffeineBootCheck();
if (bootCheck == 0) { if (bootCheck == 0) {

View File

@ -1,3 +1,3 @@
#pragma once #pragma once
bool getQuickBoot(); bool launchQuickStartTitle();

View File

@ -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); 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(); deinitLogging();
return 0; return 0;
} }