diff options
| author | a1xd <[email protected]> | 2020-10-14 19:56:11 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-14 19:56:11 -0400 |
| commit | 625ccbe552183c7cb6a3e332bb0ab8c182929810 (patch) | |
| tree | 78f8704c7a74113b09d4a49e76317bc7ac40add8 /common/rawaccel.hpp | |
| parent | Merge pull request #33 from a1xd/1.1 (diff) | |
| parent | fix non-standard access of template base members (diff) | |
| download | rawaccel-625ccbe552183c7cb6a3e332bb0ab8c182929810.tar.xz rawaccel-625ccbe552183c7cb6a3e332bb0ab8c182929810.zip | |
Merge pull request #35 from a1xd/1.1.1
1.1.1
Diffstat (limited to 'common/rawaccel.hpp')
| -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. |