mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 13:21:10 +00:00
Reset view interp in preticker
This commit is contained in:
parent
0741b7ee8e
commit
80a479f512
3 changed files with 3 additions and 7 deletions
|
@ -2415,10 +2415,6 @@ void G_Ticker(boolean run)
|
||||||
ST_Ticker();
|
ST_Ticker();
|
||||||
AM_Ticker();
|
AM_Ticker();
|
||||||
HU_Ticker();
|
HU_Ticker();
|
||||||
if (run)
|
|
||||||
{
|
|
||||||
R_UpdateViewInterpolation();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -3383,9 +3383,6 @@ boolean P_SetupLevel(boolean skipprecip)
|
||||||
|
|
||||||
G_AddMapToBuffer(gamemap-1);
|
G_AddMapToBuffer(gamemap-1);
|
||||||
|
|
||||||
R_ResetViewInterpolation(0);
|
|
||||||
R_ResetViewInterpolation(0);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -802,6 +802,7 @@ void P_Ticker(boolean run)
|
||||||
if (run)
|
if (run)
|
||||||
{
|
{
|
||||||
R_UpdateLevelInterpolators();
|
R_UpdateLevelInterpolators();
|
||||||
|
R_UpdateViewInterpolation();
|
||||||
}
|
}
|
||||||
|
|
||||||
P_MapEnd();
|
P_MapEnd();
|
||||||
|
@ -872,6 +873,8 @@ void P_PreTicker(INT32 frames)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
R_UpdateLevelInterpolators();
|
R_UpdateLevelInterpolators();
|
||||||
|
R_UpdateViewInterpolation();
|
||||||
|
R_ResetViewInterpolation();
|
||||||
|
|
||||||
P_MapEnd();
|
P_MapEnd();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue