diff options
| author | a1xd <[email protected]> | 2021-02-02 22:39:19 -0500 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-02-02 22:39:19 -0500 |
| commit | 48463581ecec7667f4e52fd6c1c1180dafbafd1c (patch) | |
| tree | 60bd2d2fad4e10eab95831392a81d61c7d0d1053 | |
| parent | fix device id not working with g305 (diff) | |
| download | rawaccel-48463581ecec7667f4e52fd6c1c1180dafbafd1c.tar.xz rawaccel-48463581ecec7667f4e52fd6c1c1180dafbafd1c.zip | |
increase default sens cap
| -rw-r--r-- | common/rawaccel.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rawaccel.hpp b/common/rawaccel.hpp index 4c1e597..e28cd92 100644 --- a/common/rawaccel.hpp +++ b/common/rawaccel.hpp @@ -65,7 +65,7 @@ namespace rawaccel { /// <summary> Struct to hold clamp (min and max) details for acceleration application </summary> struct accel_scale_clamp { double lo = 0; - double hi = 128; + double hi = 1e9; /// <summary> /// Clamps given input to min at lo, max at hi. |