Skip to content

Commit

Permalink
* Remove cl_platformSensitivity as it predates the move to SDL everyw…
Browse files Browse the repository at this point in the history
…here
  • Loading branch information
timangus committed Jul 12, 2008
1 parent 3c9dc98 commit d84d418
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions README
Expand Up @@ -134,8 +134,6 @@ New cvars
backend
s_muteWhenMinimized - mute sound when minimized
in_joystickNo - select which joystick to use
cl_platformSensitivity - read only, indicates the mouse input
scaling
r_ext_texture_filter_anisotropic - anisotropic texture filtering
cl_guidServerUniq - makes cl_guid unique for each server
cl_cURLLib - filename of cURL library to load
Expand Down
3 changes: 1 addition & 2 deletions code/client/cl_input.c
Expand Up @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions code/client/cl_main.c
Expand Up @@ -71,7 +71,6 @@ cvar_t *cl_forceavidemo;

cvar_t *cl_freelook;
cvar_t *cl_sensitivity;
cvar_t *cl_platformSensitivity;

cvar_t *cl_mouseAccel;
cvar_t *cl_showMouseRate;
Expand Down Expand Up @@ -3023,7 +3022,6 @@ void CL_Init( void ) {

cl_run = Cvar_Get ("cl_run", "1", CVAR_ARCHIVE);
cl_sensitivity = Cvar_Get ("sensitivity", "5", CVAR_ARCHIVE);
cl_platformSensitivity = Cvar_Get ("cl_platformSensitivity", "1.0", CVAR_ROM);
cl_mouseAccel = Cvar_Get ("cl_mouseAccel", "0", CVAR_ARCHIVE);
cl_freelook = Cvar_Get( "cl_freelook", "1", CVAR_ARCHIVE );

Expand Down
1 change: 0 additions & 1 deletion code/client/client.h
Expand Up @@ -376,7 +376,6 @@ extern cvar_t *cl_run;
extern cvar_t *cl_anglespeedkey;

extern cvar_t *cl_sensitivity;
extern cvar_t *cl_platformSensitivity;
extern cvar_t *cl_freelook;

extern cvar_t *cl_mouseAccel;
Expand Down

0 comments on commit d84d418

Please sign in to comment.