From 62f87df0bab84632d4f57ac3b6d3a31a3c6e1a4d Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Tue, 29 Sep 2020 21:15:17 -0400 Subject: change cut off from 1 to 10 for natural(gain) accel val --- wrapper/wrapper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wrapper/wrapper.cpp') 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"); -- cgit v1.2.3