summaryrefslogtreecommitdiffhomepage
path: root/logic
diff options
context:
space:
mode:
Diffstat (limited to 'logic')
-rw-r--r--logic/main-settings.hpp1
-rw-r--r--logic/mappings.cpp6
2 files changed, 4 insertions, 3 deletions
diff --git a/logic/main-settings.hpp b/logic/main-settings.hpp
index 20805059..51b729e3 100644
--- a/logic/main-settings.hpp
+++ b/logic/main-settings.hpp
@@ -35,6 +35,7 @@ struct OTR_LOGIC_EXPORT axis_opts final
r15 = 15,
r10 = 10,
+ t100 = 100,
t30 = 30,
t20 = 20,
t15 = 15,
diff --git a/logic/mappings.cpp b/logic/mappings.cpp
index f9a149e3..d7764375 100644
--- a/logic/mappings.cpp
+++ b/logic/mappings.cpp
@@ -25,9 +25,9 @@ void Map::load()
Mappings::Mappings(std::vector<axis_opts*> opts) :
axes {
- Map("spline-X", "alt-spline-X", 30, 75, *opts[TX]),
- Map("spline-Y", "alt-spline-Y", 30, 75, *opts[TY]),
- Map("spline-Z", "alt-spline-Z", 30, 75, *opts[TZ]),
+ Map("spline-X", "alt-spline-X", 100, 75, *opts[TX]),
+ Map("spline-Y", "alt-spline-Y", 100, 75, *opts[TY]),
+ Map("spline-Z", "alt-spline-Z", 100, 75, *opts[TZ]),
Map("spline-yaw", "alt-spline-yaw", 180, 180, *opts[Yaw]),
Map("spline-pitch", "alt-spline-pitch", 180, 180, *opts[Pitch]),
Map("spline-roll", "alt-spline-roll", 180, 180, *opts[Roll])