mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-26 05:51:00 +00:00
Increase slider precision for mouse sensitivity settings
On mice with high DPI settings, low values such as 0.1-0.3 typically need to be used to get a comfortable effective mouse sensitivity.
This commit is contained in:
parent
ca4b9c5044
commit
4cb311a4c1
1 changed files with 2 additions and 2 deletions
|
@ -812,8 +812,8 @@ OptionMenu "MouseOptions" protected
|
|||
}
|
||||
// todo Option "$MOUSEMNU_CURSOR", "vid_cursor", "Cursors"
|
||||
StaticText ""
|
||||
Slider "$MOUSEMNU_SENSITIVITY_X", "m_sensitivity_x", 0.5, 8, 0.25
|
||||
Slider "$MOUSEMNU_SENSITIVITY_Y", "m_sensitivity_y", 0.5, 8, 0.25
|
||||
Slider "$MOUSEMNU_SENSITIVITY_X", "m_sensitivity_x", 0.1, 8, 0.05
|
||||
Slider "$MOUSEMNU_SENSITIVITY_Y", "m_sensitivity_y", 0.1, 8, 0.05
|
||||
StaticText ""
|
||||
Slider "$MOUSEMNU_TURNSPEED", "m_yaw", 0, 2.5, 0.1
|
||||
Slider "$MOUSEMNU_MOUSELOOKSPEED", "m_pitch", 0, 2.5, 0.1
|
||||
|
|
Loading…
Reference in a new issue