diff --git a/include/arm11/menu/menu_fb3ds.h b/include/arm11/menu/menu_fb3ds.h index 7315c37..9117f94 100644 --- a/include/arm11/menu/menu_fb3ds.h +++ b/include/arm11/menu/menu_fb3ds.h @@ -114,7 +114,7 @@ } }, { // 2 - "Boot Setup", N_BOOTSLOTS + 3, &menuPresetBootConfig, MENU_FLAG_SLOTS | MENU_FLAG_BOOTMODE | MENU_FLAG_CONFIG, + "Boot Setup", N_BOOTSLOTS + 2, &menuPresetBootConfig, MENU_FLAG_SLOTS | MENU_FLAG_BOOTMODE | MENU_FLAG_CONFIG, { SUBENTRY_SLOT_SETUP(1), SUBENTRY_SLOT_SETUP(2), @@ -124,15 +124,15 @@ SUBENTRY_SLOT_SETUP(6), { "Change boot mode...", DESC_CHANGE_BOOT, NULL, 3 }, { "Change splash...", DESC_CHANGE_SPLASH, NULL, 4 }, - { "Enable FCRAM Boot", DESC_FCRAM_BOOT, &menuSwitchFcramBoot, 0 } + // { "Enable FCRAM Boot", DESC_FCRAM_BOOT, &menuSwitchFcramBoot, 0 } } }, { // 3 - "Boot Mode Setup", 3, &menuPresetBootMode, MENU_FLAG_CONFIG, + "Boot Mode Setup", 2, &menuPresetBootMode, MENU_FLAG_CONFIG, { { "Set normal boot", DESC_BOOT_NORMAL, &menuSetBootMode, 0 }, { "Set quick boot", DESC_BOOT_QUICK, &menuSetBootMode, 1 }, - { "Set quiet boot", DESC_BOOT_QUIET, &menuSetBootMode, 2 } + // { "Set quiet boot", DESC_BOOT_QUIET, &menuSetBootMode, 2 } } }, { // 4 @@ -144,12 +144,12 @@ } }, { // 5 - "NAND Tools", 4, &menuPresetNandTools, 0, + "NAND Tools", 2, &menuPresetNandTools, 0, { { "Backup NAND", DESC_NAND_BACKUP, &menuBackupNand, 0 }, { "Restore NAND", DESC_NAND_RESTORE, &menuRestoreNand, 0 }, - { "Restore NAND (forced)", DESC_NAND_RESTORE_F, &menuRestoreNand, 1 }, - { "Flash firmware to FIRM1", DESC_FIRM_FLASH, &menuInstallFirm, 1 } + // { "Restore NAND (forced)", DESC_NAND_RESTORE_F, &menuRestoreNand, 1 }, + // { "Flash firmware to FIRM1", DESC_FIRM_FLASH, &menuInstallFirm, 1 } } }, { // 6 diff --git a/source/arm11/config.c b/source/arm11/config.c index e58db28..d69ebed 100644 --- a/source/arm11/config.c +++ b/source/arm11/config.c @@ -1181,7 +1181,7 @@ bool configDevModeEnabled() { - return true; + return false; } bool configRamFirmBootEnabled() diff --git a/source/arm11/menu/menu.c b/source/arm11/menu/menu.c index 7167d13..42e77ad 100644 --- a/source/arm11/menu/menu.c +++ b/source/arm11/menu/menu.c @@ -188,7 +188,7 @@ // print dev mode config curY++; - if(configDevModeEnabled()) + if(!configDevModeEnabled()) { consoleSetCursor(desc_con, conw - 14, curY); ee_printf(ESC_SCHEME_BAD "debug me daddy" ESC_RESET);