Skip to content

Commit

Permalink
QuickStartMenu: Actually jump to the quick start settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed May 5, 2024
1 parent b5c007d commit 083998f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source/QuickStartUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 083998f

Please sign in to comment.