R_ViewRollAngle: don't apply camera tilting while using freecam

This commit is contained in:
James R 2023-08-15 01:15:56 -07:00
parent 01e2a26689
commit 0036006586

View file

@ -979,7 +979,7 @@ angle_t R_ViewRollAngle(const player_t *player)
if (cv_tilting.value)
{
if (!player->spectator)
if (!player->spectator && !demo.freecam)
{
roll += player->tilt;
}