Skip to content

Commit

Permalink
Rename getQuickBoot to launchQuickStartTitle
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Apr 26, 2024
1 parent 4cc08d8 commit 67dfdd1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/QuickStartUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class FileStreamWrapper {
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) {
Expand Down
2 changes: 1 addition & 1 deletion source/QuickStartUtils.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#pragma once

bool getQuickBoot();
bool launchQuickStartTitle();
2 changes: 1 addition & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 67dfdd1

Please sign in to comment.