QuickStartMenu: Actually jump to the quick start settings

This commit is contained in:
Maschell 2024-05-05 02:16:39 +02:00
parent b5c007d921
commit 083998faab

View File

@ -180,8 +180,10 @@ bool launchQuickStartTitle() {
if (info.titleId == 0x0005001010047000L ||
info.titleId == 0x0005001010047100L ||
info.titleId == 0x0005001010047200L) {
DEBUG_FUNCTION_LINE("Launch Settings");
_SYSLaunchSettings(nullptr);
DEBUG_FUNCTION_LINE("Launch Quick Start Settings");
SysAppSettingsArgs args{};
args.jumpTo = 103;
_SYSLaunchSettings(&args);
return true;
}