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
This commit is contained in:
Alug 2025-10-16 23:15:33 +02:00 committed by NepDisk
parent c4aeef0216
commit 81a616b843

View file

@ -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)