From 1bff430b7ddd5b5b69dcd5b610e6343f6d662040 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 31 Mar 2023 14:37:34 +0200 Subject: [PATCH] Fix loading the correct account when selecting the Wii U Menu or an applet in quick start menu --- source/QuickStartUtils.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/QuickStartUtils.cpp b/source/QuickStartUtils.cpp index 1f35602..ddbd7d8 100644 --- a/source/QuickStartUtils.cpp +++ b/source/QuickStartUtils.cpp @@ -105,6 +105,8 @@ bool getQuickBoot() { // load app launch param CCRSysCaffeineGetAppLaunchParam(&data); + loadConsoleAccount(data.uuid); + // get launch info for id nn::sl::LaunchInfo info; auto result = database->GetLaunchInfoById(&info, data.titleId); @@ -215,7 +217,6 @@ bool getQuickBoot() { auto err = MCP_GetTitleInfo(handle, info.titleId, &titleInfo); MCP_Close(handle); if (err == 0) { - loadConsoleAccount(data.uuid); ACPAssignTitlePatch(&titleInfo); _SYSLaunchTitleWithStdArgsInNoSplash(info.titleId, nullptr); return true;