Skip to content
Snippets Groups Projects
Commit f66cedf1 authored by Sal's avatar Sal Committed by Eidolon
Browse files

Force interpolation when timescale != 1.0

parent a76968c6
No related branches found
No related tags found
1 merge request!1783Uncapped
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment