diff options
| author | a1xd <[email protected]> | 2020-10-10 18:01:47 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-10-10 18:01:47 -0400 |
| commit | 499691c46343957e620b7d06617bbcb1e7fc403c (patch) | |
| tree | e1f4c70e0882749f531f60b6a09fbc2a5ed8f867 /common | |
| parent | Merge pull request #33 from a1xd/1.1 (diff) | |
| download | rawaccel-499691c46343957e620b7d06617bbcb1e7fc403c.tar.xz rawaccel-499691c46343957e620b7d06617bbcb1e7fc403c.zip | |
raise default scale cap from 9 to 128
Diffstat (limited to 'common')
| -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 d325abe..ecd3850 100644 --- a/common/rawaccel.hpp +++ b/common/rawaccel.hpp @@ -45,7 +45,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 = 9; + double hi = 128; /// <summary> /// Clamps given input to min at lo, max at hi. |