mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
Merge branch 'fix-continuing-mouse' into 'next'
Fix mouse being grabbed in continue screen See merge request STJr/SRB2!983
This commit is contained in:
commit
d7e7d977e6
1 changed files with 2 additions and 1 deletions
|
|
@ -373,7 +373,8 @@ static boolean IgnoreMouse(void)
|
||||||
return !M_MouseNeeded();
|
return !M_MouseNeeded();
|
||||||
if (paused || con_destlines || chat_on)
|
if (paused || con_destlines || chat_on)
|
||||||
return true;
|
return true;
|
||||||
if (gamestate != GS_LEVEL && gamestate != GS_INTERMISSION && gamestate != GS_CUTSCENE)
|
if (gamestate != GS_LEVEL && gamestate != GS_INTERMISSION &&
|
||||||
|
gamestate != GS_CONTINUING && gamestate != GS_CUTSCENE)
|
||||||
return true;
|
return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue