From 9e808b255cbc07aea196067ab41c28f0d0854959 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sun, 27 Dec 2020 00:03:40 +0200 Subject: [PATCH] Escape now returns to the previous menu if used from a submenu in the SDL port --- SDL/gui.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SDL/gui.c b/SDL/gui.c index c36dff493..a21526d9f 100644 --- a/SDL/gui.c +++ b/SDL/gui.c @@ -1369,7 +1369,11 @@ void run_gui(bool is_running) } } else if (event.key.keysym.scancode == SDL_SCANCODE_ESCAPE) { - if (is_running) { + if (gui_state == SHOWING_MENU && current_menu != root_menu) { + return_to_root_menu(0); + should_render = true; + } + else if (is_running) { return; } else {