mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-12 22:02:12 +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
590dfca582
1 changed files with 2 additions and 1 deletions
|
@ -373,7 +373,8 @@ static boolean IgnoreMouse(void)
|
|||
return !M_MouseNeeded();
|
||||
if (paused || con_destlines || chat_on)
|
||||
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 false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue