From d3c1515903dbd231e8deff7f485be809f307f110 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 26 Apr 2024 10:32:27 +0200 Subject: [PATCH] Rename getQuickBoot to launchQuickStartTitle --- source/QuickStartUtils.cpp | 2 +- source/QuickStartUtils.h | 2 +- source/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; }