mirror of
https://github.com/wiiu-env/AutobootModule.git
synced 2024-11-21 18:39:15 +01:00
Compile with latest wut version
This commit is contained in:
parent
d8b2f36cf0
commit
e6cfed9da8
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user