diff options
Diffstat (limited to 'wrapper/wrapper.cpp')
| -rw-r--r-- | wrapper/wrapper.cpp | 2 |
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"); |