diff options
Diffstat (limited to 'logic/mappings.hpp')
-rw-r--r-- | logic/mappings.hpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/logic/mappings.hpp b/logic/mappings.hpp index 7bb5f9af..d08ae29c 100644 --- a/logic/mappings.hpp +++ b/logic/mappings.hpp @@ -29,17 +29,7 @@ class OTR_LOGIC_EXPORT Mappings final private: Map axes[6]; public: - template<typename t> - Mappings(t& opts) : - axes { - { "spline-X", "alt-spline-X", *opts[TX] }, - { "spline-Y", "alt-spline-Y", *opts[TY] }, - { "spline-Z", "alt-spline-Z", *opts[TZ] }, - { "spline-yaw", "alt-spline-yaw", *opts[Yaw] }, - { "spline-pitch", "alt-spline-pitch", *opts[Pitch] }, - { "spline-roll", "alt-spline-roll", *opts[Roll] } - } - {} + Mappings(axis_opts** opts); Map& operator()(int i) { return axes[i]; } const Map& operator()(int i) const { return axes[i]; } |