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:
Lachlan Wright 2020-06-08 05:25:24 -04:00
commit 590dfca582

View file

@ -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;
}