summaryrefslogtreecommitdiff
path: root/wrapper
diff options
context:
space:
mode:
authora1xd <[email protected]>2020-09-30 02:05:48 -0400
committera1xd <[email protected]>2020-09-30 02:05:48 -0400
commitb4891e12e7c86dc6c08ced56f42d9a291195c2f8 (patch)
tree83d9403b035f37d8d79f8be49795821a11973829 /wrapper
parentMerge pull request #30 from a1xd/fix-1.0.0 (diff)
downloadrawaccel-b4891e12e7c86dc6c08ced56f42d9a291195c2f8.tar.xz
rawaccel-b4891e12e7c86dc6c08ced56f42d9a291195c2f8.zip
forbid 0 accel with naturalgain
Diffstat (limited to 'wrapper')
-rw-r--r--wrapper/wrapper.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/wrapper/wrapper.cpp b/wrapper/wrapper.cpp
index a23205f..a8fc0fb 100644
--- a/wrapper/wrapper.cpp
+++ b/wrapper/wrapper.cpp
@@ -137,6 +137,8 @@ error_list_t^ get_accel_errors(AccelMode mode, AccelArgs^ args)
if (args->acceleration > 10 && is_mode(am::natural, am::naturalgain))
error_list->Add("acceleration can not be greater than 10");
+ else if (args->acceleration == 0 && is_mode(am::naturalgain))
+ error_list->Add("acceleration must be positive");
else if (args->acceleration < 0) {
bool additive = m < am::power;
if (additive) error_list->Add("acceleration can not be negative, use a negative weight to compensate");