mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-24 21:01:17 +00:00
make the mouse sensitivity bar `integral' again (as it was before we got to the menus:)
This commit is contained in:
parent
f7ebc5df7a
commit
14ed577d20
2 changed files with 2 additions and 2 deletions
|
@ -417,7 +417,7 @@ M_AdjustSliders ( int dir )
|
|||
break;
|
||||
case 5: // mouse speed
|
||||
Cvar_Set(sensitivity, va("%f",
|
||||
bound(1, sensitivity->value + (dir * 0.05), 11)));
|
||||
bound(1, sensitivity->value + dir, 11)));
|
||||
break;
|
||||
case 6: // music volume
|
||||
Cvar_Set(bgmvolume, va("%f",
|
||||
|
|
|
@ -1127,7 +1127,7 @@ M_AdjustSliders ( int dir )
|
|||
break;
|
||||
case 5: // mouse speed
|
||||
Cvar_Set(sensitivity, va("%f",
|
||||
bound(1, sensitivity->value + (dir * 0.05), 11)));
|
||||
bound(1, sensitivity->value + dir, 11)));
|
||||
break;
|
||||
case 6: // music volume
|
||||
Cvar_Set(bgmvolume, va("%f",
|
||||
|
|
Loading…
Reference in a new issue