Skip to content

Commit

Permalink
Fix #2435
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Sep 5, 2024
1 parent 8e103ff commit 38e0cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions settings/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1577,12 +1577,12 @@ int settingsMode(void)
// or delete the hiya autoboot file.
miscPage
.option(STR_DEFAULT_LAUNCHER, STR_DESCRIPTION_DEFAULT_LAUNCHER_1, Option::Bool(&hiyaAutobootFound, opt_hiya_autoboot_toggle), {"TWiLight Menu++", STR_SYSTEM_MENU}, {true, false})
.option(STR_SYSTEMSETTINGS, STR_DESCRIPTION_SYSTEMSETTINGS_1, Option::Nul(opt_reboot_system_menu), {}, {});
.option(STR_SYSTEMSETTINGS, STR_DESCRIPTION_SYSTEMSETTINGS_1, Option::Nul(opt_reboot_system_menu), {STR_PRESS_A}, {0});
}

if (lumaFound) {
miscPage
.option(STR_SET_LUMA_AUTOBOOT, STR_DESCRIPTION_SET_LUMA_AUTOBOOT, Option::Nul(opt_set_luma_autoboot), {}, {});
.option(STR_SET_LUMA_AUTOBOOT, STR_DESCRIPTION_SET_LUMA_AUTOBOOT, Option::Nul(opt_set_luma_autoboot), {STR_PRESS_A}, {0});
}

/*SettingsPage twlfirmPage(STR_TWLFIRM_SETTINGS);
Expand Down

0 comments on commit 38e0cc8

Please sign in to comment.