From 81a616b843ce87ae78ac031ac2f75e21be3009e4 Mon Sep 17 00:00:00 2001 From: Alug Date: Thu, 16 Oct 2025 23:15:33 +0200 Subject: [PATCH] change wheel input "sensitivity" 200 maps perfectly to our turn values so the wheel now actually better reflects the inputs and does not turn fully super early uhh --- src/k_hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_hud.c b/src/k_hud.c index bdcc268a8..7e127660c 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -5096,7 +5096,7 @@ static void K_drawInput(void) target = 0; else // turning of multiple strengths! { - target = ((abs(stplyr->cmd.turning) - 1)/125)+1; + target = ((abs(stplyr->cmd.turning) - 1)/200)+1; // was 125, do we need another toggle for this? Zzz... if (target > 4) target = 4; if (stplyr->cmd.turning < 0)