mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-04 00:41:02 +00:00
Force interpolation when timescale != 1.0
This commit is contained in:
parent
a76968c6d9
commit
f66cedf1fc
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ UINT32 R_GetFramerateCap(void)
|
|||
|
||||
boolean R_UsingFrameInterpolation(void)
|
||||
{
|
||||
return (R_GetFramerateCap() != TICRATE); // maybe use ">" instead?
|
||||
return (R_GetFramerateCap() != TICRATE || cv_timescale.value < FRACUNIT);
|
||||
}
|
||||
|
||||
static viewvars_t p1view_old;
|
||||
|
|
Loading…
Reference in a new issue