mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-24 13:01:48 +00:00
Fixed view for frozen players
Will no longer try and extrapolate mouse input that's bound to mispredict.
This commit is contained in:
parent
702ef493f0
commit
c31f45c653
1 changed files with 2 additions and 1 deletions
|
@ -464,7 +464,8 @@ bool P_NoInterpolation(player_t const *player, AActor const *actor)
|
|||
&& player->mo->reactiontime == 0
|
||||
&& !NoInterpolateView
|
||||
&& !paused
|
||||
&& !LocalKeyboardTurner;
|
||||
&& !LocalKeyboardTurner
|
||||
&& !player->mo->isFrozen();
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
Loading…
Reference in a new issue