summaryrefslogtreecommitdiffhomepage
path: root/src/rinput.c
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2024-09-15 16:37:49 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2024-09-15 16:37:49 +0100
commit05cb6abe4ffaa6928190073f86423b3c0b03b4fd (patch)
treee28d38f33790959fc16e62c422aab19055cbd599 /src/rinput.c
parent5f208d6820f42ab138a3c7144728787bd988004c (diff)
Increase mouse factor limit to 100
Requested repeatedly by Portal people, and I don't see why not. We were conservative at first but I've yet to come up with a real reason why slowing mouse input further would be a problem.
Diffstat (limited to 'src/rinput.c')
-rw-r--r--src/rinput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rinput.c b/src/rinput.c
index 5464957..3baa67c 100644
--- a/src/rinput.c
+++ b/src/rinput.c
@@ -64,7 +64,7 @@ DEF_CVAR_UNREG(m_rawinput, "Use Raw Input for mouse input (SST reimplementation)
0, CON_ARCHIVE | CON_HIDDEN)
DEF_CVAR_MINMAX(sst_mouse_factor, "Number of hardware mouse counts per step",
- 1, 1, 20, /*CON_ARCHIVE |*/ CON_HIDDEN)
+ 1, 1, 100, /*CON_ARCHIVE |*/ CON_HIDDEN)
static ssize __stdcall inproc(void *wnd, uint msg, usize wp, ssize lp) {
switch (msg) {