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:
parent
c4aeef0216
commit
81a616b843
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue