Compile with latest wut version

This commit is contained in:
Maschell 2024-05-05 17:25:33 +02:00
parent d8b2f36cf0
commit e6cfed9da8
2 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/wiiu-env/devkitppc:20240423
FROM ghcr.io/wiiu-env/devkitppc:20240505
COPY --from=ghcr.io/wiiu-env/libmocha:20230621 /artifacts $DEVKITPRO
COPY --from=ghcr.io/wiiu-env/librpxloader:20240425 /artifacts $DEVKITPRO

View File

@ -148,17 +148,17 @@ bool launchQuickStartTitle() {
// load app launch param
CCRSysCaffeineGetAppLaunchParam(&data);
if (data.titleId == 1) { // This id is hardcoded into the nn_sl.rpl
if (data.launchInfoDatabaseEntryId == 1) { // This id is hardcoded into the nn_sl.rpl
DEBUG_FUNCTION_LINE("Launch Quick Start Settings");
SysAppSettingsArgs args{};
args.jumpTo = 103; // quick start settings
args.jumpTo = SYS_SETTINGS_JUMP_TO_QUICK_START_SETTINGS; // quick start settings
_SYSLaunchSettings(&args);
return true;
}
loadConsoleAccount(data.uuid);
auto result = launchInfoDatabase.GetLaunchInfoById(&info, data.titleId);
auto result = launchInfoDatabase.GetLaunchInfoById(&info, data.launchInfoDatabaseEntryId);
nn::sl::Finalize();
@ -166,7 +166,6 @@ bool launchQuickStartTitle() {
DEBUG_FUNCTION_LINE("GetLaunchInfoById failed.");
return false;
}
DEBUG_FUNCTION_LINE_ERR("%s", info.parameter);
if ((info.titleId & TITLE_ID_HOMEBREW_MASK) == TITLE_ID_HOMEBREW_MASK) {
std::string homebrewPath = info.parameter;