mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 23:11:38 +00:00
Set the default joystick preamp to 0.01.
At the request of johnnyonflame. I probably should have done this when I removed the builtin 1/100 scaling from the joystick code.
This commit is contained in:
parent
125ef1f0ff
commit
0f75bdce17
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ JOY_Init_Cvars (void)
|
|||
"Joystick enable flag");
|
||||
joy_amp = Cvar_Get ("joy_amp", "1", CVAR_NONE | CVAR_ARCHIVE, joyamp_f,
|
||||
"Joystick amplification");
|
||||
joy_pre_amp = Cvar_Get ("joy_pre_amp", "1", CVAR_NONE | CVAR_ARCHIVE,
|
||||
joy_pre_amp = Cvar_Get ("joy_pre_amp", "0.01", CVAR_NONE | CVAR_ARCHIVE,
|
||||
joyamp_f, "Joystick pre-amplification");
|
||||
|
||||
Cmd_AddCommand ("in_joy", in_joy_f, "Configures the joystick behaviour");
|
||||
|
|
Loading…
Reference in a new issue