mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 16:41:31 +00:00
* Remove cl_platformSensitivity as it predates the move to SDL everywhere
This commit is contained in:
parent
3c9dc98d04
commit
d84d418086
4 changed files with 1 additions and 7 deletions
|
@ -453,8 +453,7 @@ void CL_MouseMove( usercmd_t *cmd ) {
|
|||
cl.mouseDy[cl.mouseIndex] = 0;
|
||||
|
||||
rate = sqrt( mx * mx + my * my ) / (float)frame_msec;
|
||||
accelSensitivity = ( cl_sensitivity->value *
|
||||
cl_platformSensitivity->value ) + rate * cl_mouseAccel->value;
|
||||
accelSensitivity = cl_sensitivity->value + rate * cl_mouseAccel->value;
|
||||
|
||||
// scale by FOV
|
||||
accelSensitivity *= cl.cgameSensitivity;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue