mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
sw/src/draw.cpp:drawscreen: Don't interpolate while the game is paused
This commit is contained in:
parent
656e059c86
commit
bfd79d8bc2
1 changed files with 2 additions and 0 deletions
|
@ -1996,6 +1996,8 @@ drawscreen(PLAYERp pp)
|
|||
|
||||
|
||||
smoothratio = CalcSmoothRatio(totalclock, ototalclock, 120 / synctics);
|
||||
if (GamePaused && !ReloadPrompt) // The checks were brought over from domovethings
|
||||
smoothratio = 65536;
|
||||
|
||||
if (!ScreenSavePic)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue