mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fixed effective viewroll doubling.
This commit is contained in:
parent
38e6cba181
commit
dff5fc37f1
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ static void R_SetupFreelook(player_t *player, boolean skybox)
|
|||
|
||||
void R_InterpolateViewRollAngle(fixed_t frac)
|
||||
{
|
||||
viewroll = oldview->roll + R_LerpAngle(oldview->roll, newview->roll, frac);
|
||||
viewroll = R_LerpAngle(oldview->roll, newview->roll, frac);
|
||||
}
|
||||
|
||||
void R_InterpolateView(fixed_t frac)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue