diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-16 02:58:43 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-16 06:45:48 +0100 |
commit | 9282f42525ffabe812fae2d614050bf91b610df9 (patch) | |
tree | 7a402eab9dde649c6137bccb5c5901c8fe4f5c9b /logic/main-settings.hpp | |
parent | 4701f4748f0484e7dd75a6883bb7651697cc1e71 (diff) |
logic/mappings: fix silly ctor
Diffstat (limited to 'logic/main-settings.hpp')
-rw-r--r-- | logic/main-settings.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/main-settings.hpp b/logic/main-settings.hpp index 3ea68bca..00fbe9cc 100644 --- a/logic/main-settings.hpp +++ b/logic/main-settings.hpp @@ -39,7 +39,7 @@ struct OTR_LOGIC_EXPORT main_settings final bundle b, b_map; axis_opts a_x, a_y, a_z; axis_opts a_yaw, a_pitch, a_roll; - std::vector<axis_opts*> all_axis_opts; + axis_opts* all_axis_opts[6]; value<bool> tcomp_p, tcomp_disable_tx, tcomp_disable_ty, tcomp_disable_tz; value<bool> tcomp_disable_src_yaw, tcomp_disable_src_pitch, tcomp_disable_src_roll; value<bool> tray_enabled, tray_start; |