make the mouse sensitivity bar `integral' again (as it was before we got to the menus:)

This commit is contained in:
Bill Currie 2000-04-12 23:09:42 +00:00
parent f7ebc5df7a
commit 14ed577d20
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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",