From 0c89c85aae56de927ab36aee4d58045c58b9e4da Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sat, 28 Jun 2025 17:47:05 -0400 Subject: [PATCH] Fix camera hitch during first few tics of level --- 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 b691921ca..4f834e62f 100644 --- a/src/r_main.cpp +++ b/src/r_main.cpp @@ -1439,7 +1439,7 @@ boolean R_IsViewpointThirdPerson(player_t *player, boolean skybox) // Prevent game crash if player is ever invalid. if (!player) - return false; + return true; chasecam = R_ViewpointHasChasecam(player);