summaryrefslogtreecommitdiff
path: root/common/rawaccel.hpp
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-26 15:13:53 -0700
committerJacob Palecki <[email protected]>2020-09-26 15:13:53 -0700
commit80ffeaf6d6cb00106991bb7cc202c957c3e10d34 (patch)
tree7e3adf9cf7aa3f49faed6d1af79108965fa2e9dc /common/rawaccel.hpp
parentScale Last Mouse Move by poll rate (diff)
downloadrawaccel-80ffeaf6d6cb00106991bb7cc202c957c3e10d34.tar.xz
rawaccel-80ffeaf6d6cb00106991bb7cc202c957c3e10d34.zip
Remove logarithm
Diffstat (limited to 'common/rawaccel.hpp')
-rw-r--r--common/rawaccel.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/common/rawaccel.hpp b/common/rawaccel.hpp
index 2e627c9..14db883 100644
--- a/common/rawaccel.hpp
+++ b/common/rawaccel.hpp
@@ -8,7 +8,6 @@
#include "accel-linear.hpp"
#include "accel-classic.hpp"
-#include "accel-logarithm.hpp"
#include "accel-natural.hpp"
#include "accel-naturalgain.hpp"
#include "accel-power.hpp"
@@ -84,7 +83,6 @@ namespace rawaccel {
case accel_mode::natural: return vis(var.u.natural);
case accel_mode::naturalgain: return vis(var.u.naturalgain);
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);
default: return vis(var.u.noaccel);
}
@@ -101,7 +99,6 @@ namespace rawaccel {
accel_natural natural;
accel_naturalgain naturalgain;
accel_power power;
- accel_logarithm logarithm;
accel_motivity motivity;
accel_noaccel noaccel = {};
} u = {};