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.
This commit is contained in:
toaster 2022-11-17 16:42:05 +00:00
parent 1242e9256e
commit 0c8c3df6a3

View file

@ -1584,7 +1584,10 @@ void M_Ticker(void)
INT32 i; INT32 i;
if (!menuactive) if (!menuactive)
{
noFurtherInput = false;
return; return;
}
if (menutransition.tics != 0 || menutransition.dest != 0) if (menutransition.tics != 0 || menutransition.dest != 0)
{ {