mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 20:11:47 +00:00
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:
parent
1242e9256e
commit
0c8c3df6a3
1 changed files with 3 additions and 0 deletions
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue