Fix loading the correct account when selecting the Wii U Menu or an applet in quick start menu

This commit is contained in:
Maschell 2023-03-31 14:37:34 +02:00
parent 873521f884
commit 1bff430b7d
1 changed files with 2 additions and 1 deletions

View File

@ -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;