diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2024-09-15 16:37:49 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2024-09-15 16:37:49 +0100 |
commit | 05cb6abe4ffaa6928190073f86423b3c0b03b4fd (patch) | |
tree | e28d38f33790959fc16e62c422aab19055cbd599 /src | |
parent | 5f208d6820f42ab138a3c7144728787bd988004c (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')
-rw-r--r-- | src/rinput.c | 2 |
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) { |