From 4a16f27abde029a601a7ce976b1078dff394b69a Mon Sep 17 00:00:00 2001 From: fgsfds Date: Wed, 15 Nov 2023 12:13:13 +0100 Subject: [PATCH] port: don't slow down the mouse at exactly 240 fps --- src/game/bondmove.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/bondmove.c b/src/game/bondmove.c index dcbc70df6..45f75ea6c 100644 --- a/src/game/bondmove.c +++ b/src/game/bondmove.c @@ -714,7 +714,7 @@ void bmoveProcessInput(bool allowc1x, bool allowc1y, bool allowc1buttons, bool i #ifndef PLATFORM_N64 const bool allowmlook = (g_Vars.currentplayernum == 0) && (allowc1x || allowc1y); bool allowmcross = false; - const f32 mlookscale = g_Vars.lvupdate240 ? (4.f / (f32)g_Vars.lvupdate240) : 0.25f; + const f32 mlookscale = g_Vars.lvupdate240 ? (4.f / (f32)g_Vars.lvupdate240) : 4.f; #endif controlmode = optionsGetControlMode(g_Vars.currentplayerstats->mpindex);