mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Uncap frame interpolation on the viewpoint
This commit is contained in:
parent
27aa5d43e5
commit
a90953c22d
1 changed files with 2 additions and 0 deletions
|
|
@ -84,8 +84,10 @@ void R_InterpolateView(fixed_t frac)
|
||||||
{
|
{
|
||||||
if (frac < 0)
|
if (frac < 0)
|
||||||
frac = 0;
|
frac = 0;
|
||||||
|
#if 0
|
||||||
if (frac > FRACUNIT)
|
if (frac > FRACUNIT)
|
||||||
frac = FRACUNIT;
|
frac = FRACUNIT;
|
||||||
|
#endif
|
||||||
|
|
||||||
viewx = oldview->x + R_LerpFixed(oldview->x, newview->x, frac);
|
viewx = oldview->x + R_LerpFixed(oldview->x, newview->x, frac);
|
||||||
viewy = oldview->y + R_LerpFixed(oldview->y, newview->y, frac);
|
viewy = oldview->y + R_LerpFixed(oldview->y, newview->y, frac);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue