Let titledemos play while game is unfocused

This commit is contained in:
fickleheart 2019-02-18 20:51:28 -06:00
parent 3a3b623e34
commit a2b5b76b98

View file

@ -169,7 +169,7 @@ fixed_t P_ReturnThrustY(mobj_t *mo, angle_t angle, fixed_t move)
boolean P_AutoPause(void)
{
// Don't pause even on menu-up or focus-lost in netgames or record attack
if (netgame || modeattacking)
if (netgame || modeattacking || titledemo)
return false;
return (menuactive || window_notinfocus);