1
0
forked from me/IronOS

Add early exit to settings menu

Adds pressing both buttons to exit settings menu. #53
This commit is contained in:
Ben V. Brown
2017-08-09 15:14:06 +10:00
parent f3c1fafccc
commit d2efa0dc05

View File

@@ -150,7 +150,14 @@ void ProcessUI() {
//The user pressed the button to breakout of the settings help prompt
StatusFlags = 0;
} else {
if (Buttons & BUT_B) {
if (Buttons == (BUT_A | BUT_B)) {
//Both buttons were pressed, exit back to the startup screen
settingsPage = 0; //reset
operatingMode = STARTUP; //reset back to the startup
saveSettings(); //Save the settings
} else if (Buttons & BUT_B) {
//A key iterates through the menu
if (settingsPage == SETTINGSOPTIONSCOUNT) {
//Roll off the end