summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-08-09 11:31:04 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-08-09 11:31:04 +0200
commite52f4f6e9df4634c9f01b84c73e30c06ad5e6dc6 (patch)
tree551573453e6313a3a080791029d48685f177ffe6
parent4e98241bac583b65aa29bd8b37ea360e11961d6b (diff)
logic/mapping: allow for higher max translation
Issue: #408 Reported-by: @olegiy
-rw-r--r--opentrack-logic/mappings.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/opentrack-logic/mappings.hpp b/opentrack-logic/mappings.hpp
index 4cdbc7ac..8e7d3b35 100644
--- a/opentrack-logic/mappings.hpp
+++ b/opentrack-logic/mappings.hpp
@@ -42,9 +42,9 @@ private:
public:
Mappings(std::vector<axis_opts*> opts) :
axes {
- Mapping("tx","tx_alt", 30, 50, *opts[TX]),
- Mapping("ty","ty_alt", 30, 50, *opts[TY]),
- Mapping("tz","tz_alt", 30, 50, *opts[TZ]),
+ Mapping("tx","tx_alt", 30, 75, *opts[TX]),
+ Mapping("ty","ty_alt", 30, 75, *opts[TY]),
+ Mapping("tz","tz_alt", 30, 75, *opts[TZ]),
Mapping("rx", "rx_alt", 180, 180, *opts[Yaw]),
Mapping("ry", "ry_alt", 180, 180, *opts[Pitch]),
Mapping("rz", "rz_alt", 180, 180, *opts[Roll])