diff options
Diffstat (limited to 'ftnoir_tracker_ht')
-rw-r--r-- | ftnoir_tracker_ht/ftnoir_tracker_ht.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ftnoir_tracker_ht/ftnoir_tracker_ht.h b/ftnoir_tracker_ht/ftnoir_tracker_ht.h index 6a19477e..ce264b8c 100644 --- a/ftnoir_tracker_ht/ftnoir_tracker_ht.h +++ b/ftnoir_tracker_ht/ftnoir_tracker_ht.h @@ -18,12 +18,11 @@ #include "opentrack/plugin-api.hpp" using namespace options; -struct settings { - pbundle b; +struct settings : opts { value<double> fov; value<int> fps, camera_idx, resolution; settings() : - b(bundle("HT-Tracker")), + opts("HT-Tracker"), fov(b, "fov", 56), fps(b, "fps", 0), camera_idx(b, "camera-index", 0), |