summaryrefslogtreecommitdiff
path: root/wrapper/wrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wrapper/wrapper.cpp')
-rw-r--r--wrapper/wrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/wrapper/wrapper.cpp b/wrapper/wrapper.cpp
index c665bed..a23205f 100644
--- a/wrapper/wrapper.cpp
+++ b/wrapper/wrapper.cpp
@@ -135,8 +135,8 @@ error_list_t^ get_accel_errors(AccelMode mode, AccelArgs^ args)
auto error_list = gcnew error_list_t();
- if (args->acceleration > 1 && is_mode(am::natural, am::naturalgain))
- error_list->Add("acceleration can not be greater than 1");
+ 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) {
bool additive = m < am::power;
if (additive) error_list->Add("acceleration can not be negative, use a negative weight to compensate");