Renamed another var.

This commit is contained in:
Dual Tachyon 2023-08-14 17:39:51 +01:00
parent f9eaadd974
commit e876baf578
2 changed files with 3 additions and 4 deletions

5
gui.c
View File

@ -38,7 +38,6 @@ uint8_t g_20000380;
uint8_t g_20000390;
uint8_t g_200003BA;
uint8_t g_200003BB;
uint8_t g_20000367;
uint8_t gWasFKeyPressed;
bool gAskForConfirmation;
@ -569,8 +568,8 @@ void GUI_SelectNextDisplay(GUI_DisplayType_t Display)
gF_LOCK = 0;
gAskToSave = false;
gAskToDelete = false;
if (g_20000367 == 1) {
g_20000367 = 0;
if (gWasFKeyPressed == 1) {
gWasFKeyPressed = 0;
g_2000036F = 1;
}
}

2
gui.h
View File

@ -37,7 +37,7 @@ extern uint8_t g_20000380;
extern uint8_t g_20000390;
extern uint8_t g_200003BA;
extern uint8_t g_200003BB;
extern uint8_t g_20000367;
extern uint8_t gWasFKeyPressed;
extern bool gAskForConfirmation;
extern bool gAskToSave;