diff options
| author | Jacob Palecki <[email protected]> | 2020-09-22 15:26:08 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-22 15:26:08 -0700 |
| commit | f4ff6334df8a3fd66d13082606b69a78fa592237 (patch) | |
| tree | 6db3b486a4c19ed02d5c4368fd18d29b2abec78d /common/rawaccel.hpp | |
| parent | Save option to show velocity and gain on gui startup (diff) | |
| download | rawaccel-f4ff6334df8a3fd66d13082606b69a78fa592237.tar.xz rawaccel-f4ff6334df8a3fd66d13082606b69a78fa592237.zip | |
Remove sigmoidgain, only allow one instance of grapher to run at a time
Diffstat (limited to 'common/rawaccel.hpp')
| -rw-r--r-- | common/rawaccel.hpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/rawaccel.hpp b/common/rawaccel.hpp index 3eb9181..2e627c9 100644 --- a/common/rawaccel.hpp +++ b/common/rawaccel.hpp @@ -12,7 +12,6 @@ #include "accel-natural.hpp" #include "accel-naturalgain.hpp" #include "accel-power.hpp" -#include "accel-sigmoidgain.hpp" #include "accel-motivity.hpp" #include "accel-noaccel.hpp" @@ -84,10 +83,9 @@ namespace rawaccel { case accel_mode::classic: return vis(var.u.classic); case accel_mode::natural: return vis(var.u.natural); case accel_mode::naturalgain: return vis(var.u.naturalgain); - case accel_mode::sigmoidgain: return vis(var.u.sigmoidgain); case accel_mode::power: return vis(var.u.power); case accel_mode::logarithm: return vis(var.u.logarithm); - case accel_mode::motivity: return vis(var.u.motivity); + case accel_mode::motivity: return vis(var.u.motivity); default: return vis(var.u.noaccel); } } @@ -102,7 +100,6 @@ namespace rawaccel { accel_classic classic; accel_natural natural; accel_naturalgain naturalgain; - accel_sigmoidgain sigmoidgain; accel_power power; accel_logarithm logarithm; accel_motivity motivity; |