From c4825fb7e7315bd601470670363936cc5c6b54bd Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 15 Aug 2023 01:15:56 -0700 Subject: [PATCH] R_ViewRollAngle: don't apply camera tilting while using freecam --- src/r_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_main.cpp b/src/r_main.cpp index 25017fd02..dc4799b49 100644 --- a/src/r_main.cpp +++ b/src/r_main.cpp @@ -920,7 +920,7 @@ angle_t R_ViewRollAngle(const player_t *player) if (cv_tilting.value) { - if (!player->spectator) + if (!player->spectator && !demo.freecam) { roll += player->tilt; }