mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 13:41:45 +00:00
fix war crimes (#31)
This commit is contained in:
parent
e8d583b1de
commit
2302e6111a
1 changed files with 6 additions and 6 deletions
|
@ -27,10 +27,10 @@ enum {
|
|||
MainDumpFw,
|
||||
MainViewKeys,
|
||||
MainExit,
|
||||
MainRebootAMS,
|
||||
MainRebootHekate,
|
||||
MainPowerOff,
|
||||
MainRebootRCM,
|
||||
MainPowerOff
|
||||
MainRebootHekate,
|
||||
MainRebootAMS
|
||||
};
|
||||
|
||||
MenuEntry_t mainMenuEntries[] = {
|
||||
|
@ -45,10 +45,10 @@ MenuEntry_t mainMenuEntries[] = {
|
|||
[MainDumpFw] = {.optionUnion = COLORTORGB(COLOR_BLUE), .name = "Dump Firmware"},
|
||||
[MainViewKeys] = {.optionUnion = COLORTORGB(COLOR_YELLOW), .name = "View dumped keys"},
|
||||
[MainExit] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "\n-- Exit --"},
|
||||
[MainRebootAMS] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to atmosphere/reboot_payload.bin"},
|
||||
[MainRebootHekate] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to bootloader/update.bin"},
|
||||
[MainPowerOff] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Power off"},
|
||||
[MainRebootRCM] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to RCM"},
|
||||
[MainPowerOff] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Power off"}
|
||||
[MainRebootHekate] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to bootloader/update.bin"},
|
||||
[MainRebootAMS] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to atmosphere/reboot_payload.bin"}
|
||||
};
|
||||
|
||||
void HandleSD(){
|
||||
|
|
Loading…
Reference in a new issue