From 0c8c3df6a334a9bf266a2f2cb396dc48dcf5f303 Mon Sep 17 00:00:00 2001 From: toaster Date: Thu, 17 Nov 2022 16:42:05 +0000 Subject: [PATCH] Fix menus sometimes getting stuck closed The problem here is that the menuactive check I added in the followers branch prevented noFurtherInput from being unset. It now can no longer be set while the menu is closed. --- src/k_menufunc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/k_menufunc.c b/src/k_menufunc.c index 3a2706b9d..0463c261a 100644 --- a/src/k_menufunc.c +++ b/src/k_menufunc.c @@ -1584,7 +1584,10 @@ void M_Ticker(void) INT32 i; if (!menuactive) + { + noFurtherInput = false; return; + } if (menutransition.tics != 0 || menutransition.dest != 0) {