mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 13:11:54 +00:00
SCRIPT_ONLY:make --Exit-- selectable so you can't accidentally power off
This commit is contained in:
parent
425f3e82b1
commit
62d93636d0
2 changed files with 6 additions and 1 deletions
|
@ -560,6 +560,9 @@ ParserRet_t parseScript(char* in, u32 len) {
|
||||||
vecAdd(&staticVariableHolder, a);
|
vecAdd(&staticVariableHolder, a);
|
||||||
CreateVariableReferenceStatic((Variable_t*)(staticVariableHolder.count - 1));
|
CreateVariableReferenceStatic((Variable_t*)(staticVariableHolder.count - 1));
|
||||||
op.variable = reference;
|
op.variable = reference;
|
||||||
|
vecAdd(&lastFunc->operations, op);
|
||||||
|
op.token = EquationSeperator;
|
||||||
|
op.lineNumber = lineNumber;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -65,8 +65,10 @@ MenuEntry_t mainMenuEntries[] = {
|
||||||
[MainPartitionSd] = {.optionUnion = COLORTORGB(COLOR_ORANGE), .name = "Partition the sd"},
|
[MainPartitionSd] = {.optionUnion = COLORTORGB(COLOR_ORANGE), .name = "Partition the sd"},
|
||||||
[MainViewKeys] = {.optionUnion = COLORTORGB(COLOR_YELLOW), .name = "View dumped keys"},
|
[MainViewKeys] = {.optionUnion = COLORTORGB(COLOR_YELLOW), .name = "View dumped keys"},
|
||||||
[MainViewCredits] = {.optionUnion = COLORTORGB(COLOR_YELLOW), .name = "Credits"},
|
[MainViewCredits] = {.optionUnion = COLORTORGB(COLOR_YELLOW), .name = "Credits"},
|
||||||
#endif
|
|
||||||
[MainExit] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "\n-- Exit --"},
|
[MainExit] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "\n-- Exit --"},
|
||||||
|
#else
|
||||||
|
[MainExit] = {.optionUnion = COLORTORGB(COLOR_WHITE), .name = "\n-- Exit --"},
|
||||||
|
#endif
|
||||||
[MainPowerOff] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Power off"},
|
[MainPowerOff] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Power off"},
|
||||||
[MainRebootRCM] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to RCM"},
|
[MainRebootRCM] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to RCM"},
|
||||||
[MainRebootNormal] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot normally"},
|
[MainRebootNormal] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot normally"},
|
||||||
|
|
Loading…
Reference in a new issue