From 88c201da47e839f1e3478310d4652f765f64f628 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Tue, 12 Aug 2025 23:31:43 -0400 Subject: [PATCH] Use mapobjectscale instead of FRACUNIT --- src/p_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_user.c b/src/p_user.c index 5439f5e9e..dc9219087 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -3092,7 +3092,7 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall // sets ideal cam pos { - const fixed_t speedthreshold = 48*FRACUNIT; + const fixed_t speedthreshold = 48*mapobjectscale; const fixed_t olddist = P_AproxDistance(mo->x - thiscam->x, mo->y - thiscam->y); fixed_t lag, distoffset;