mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 05:11:34 +00:00
Don't pause while the menu's up during replays
This commit is contained in:
parent
f54f08e6b5
commit
a8023adfdf
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ boolean P_AutoPause(void)
|
|||
if (netgame || modeattacking || demo.title)
|
||||
return false;
|
||||
|
||||
return (menuactive || ( window_notinfocus && cv_pauseifunfocused.value ));
|
||||
return ((menuactive && !demo.playback) || ( window_notinfocus && cv_pauseifunfocused.value ));
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue