Don't pause while the menu's up during replays

This commit is contained in:
fickleheart 2019-03-31 16:28:29 -05:00
parent f54f08e6b5
commit a8023adfdf

View file

@ -172,7 +172,7 @@ boolean P_AutoPause(void)
if (netgame || modeattacking || demo.title) if (netgame || modeattacking || demo.title)
return false; return false;
return (menuactive || ( window_notinfocus && cv_pauseifunfocused.value )); return ((menuactive && !demo.playback) || ( window_notinfocus && cv_pauseifunfocused.value ));
} }
// //