diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-02 07:57:15 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-02 07:58:09 +0200 |
commit | 27bbb01ff3d49bd37daa9649f5c2320663c46aa4 (patch) | |
tree | c84a81e6f5531e2322ce80189671dd6e9a216cc1 /opentrack | |
parent | 307d9030edbc3e97a49fd1f2266b0e22fcfa552a (diff) |
more changes
Diffstat (limited to 'opentrack')
-rw-r--r-- | opentrack/main-settings.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/opentrack/main-settings.hpp b/opentrack/main-settings.hpp index 8e56ebab..d3a49a83 100644 --- a/opentrack/main-settings.hpp +++ b/opentrack/main-settings.hpp @@ -26,7 +26,7 @@ struct main_settings : opts { value<bool> tcomp_p, tcomp_tz; value<bool> tray_enabled; value<int> camera_yaw, camera_pitch, camera_roll; - value<bool> center_at_startup; + value<bool> center_at_startup, wizard_done; main_settings() : opts("opentrack-ui"), protocol_dll(b, "protocol-dll", ""), @@ -42,6 +42,7 @@ struct main_settings : opts { camera_yaw(b, "camera-yaw", 0), camera_pitch(b, "camera-pitch", 0), camera_roll(b, "camera-roll", 0), - center_at_startup(b, "center-at-startup", true) + center_at_startup(b, "center-at-startup", true), + wizard_done(b, "wizard-done", false) {} }; |