Fix mouse being grabbed in the continue screen.

This commit is contained in:
sphere 2020-06-07 00:40:33 +02:00
parent a4d7ff3c6d
commit 82200d80a9

View file

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