Reorder BIS menu options

This commit is contained in:
Such Meme, Many Skill
2020-03-19 16:17:36 +01:00
parent 4e1368faaf
commit d5c23ebf96
3 changed files with 4 additions and 19 deletions

View File

@@ -55,8 +55,7 @@ enum mainmenu_tools_return {
TOOLS_DISPLAY_GPIO,
TOOLS_DUMPFIRMWARE,
TOOLS_DUMPUSERSAVE,
TOOLS_DUMP_BOOT,
TOOLS_RESTORE_BOOT
TOOLS_DUMP_BOOT
};
extern menu_entry mainmenu_tools[];

View File

@@ -31,8 +31,7 @@ menu_entry mainmenu_tools[] = {
{"Display GPIO pins", COLOR_VIOLET, ISMENU},
{"Dump Firmware", COLOR_BLUE, ISMENU},
{"Dump User Saves", COLOR_YELLOW, ISMENU},
{"[DEBUG] Dump bis", COLOR_RED, ISMENU},
{"[DEBUG] Restore bis", COLOR_RED, ISMENU}
{"Dump bis", COLOR_ORANGE, ISMENU}
};
menu_entry mainmenu_format[] = {
@@ -58,7 +57,7 @@ menu_entry fs_menu_file[] = {
{"Launch Payload", COLOR_ORANGE, ISMENU},
{"Launch Script", COLOR_YELLOW, ISMENU},
{"View Hex", COLOR_GREEN, ISMENU},
{"Extract BIS", COLOR_RED, ISMENU},
{"\nExtract BIS", COLOR_YELLOW, ISMENU},
{"Restore BIS", COLOR_RED, ISMENU}
};