summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-04-07 23:38:27 -0700
committerJacob Palecki <[email protected]>2021-04-07 23:38:27 -0700
commitea07f6f9eef72e7b126916cd1ae08b18b434dadf (patch)
tree057222487a42af36596e2e18eafb51d513b38798
parentAdd arbitrary lut struct (diff)
downloadrawaccel-ea07f6f9eef72e7b126916cd1ae08b18b434dadf.tar.xz
rawaccel-ea07f6f9eef72e7b126916cd1ae08b18b434dadf.zip
remove const from uneeded class
-rw-r--r--common/accel-lookup.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/accel-lookup.hpp b/common/accel-lookup.hpp
index 6c73605..965cbec 100644
--- a/common/accel-lookup.hpp
+++ b/common/accel-lookup.hpp
@@ -223,7 +223,7 @@ namespace rawaccel {
return pair.slope + pair.intercept / speed;
}
- void fill(vec2d* points, int length) const
+ void fill(vec2d* points, int length)
{
vec2d current = {0, 0};
vec2d next;