summaryrefslogtreecommitdiffhomepage
path: root/tracker-steamvr/steamvr.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-01-16 11:23:06 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-01-16 11:23:06 +0100
commit3fabee84281da18ad1ce7df2f9099c7ec6678614 (patch)
treee33028b52b3a3309d9dec02a5b3fc1821ea212d8 /tracker-steamvr/steamvr.hpp
parent4a5b7ff7ec97f9078780ffc44d923d11a0aa18c1 (diff)
tracker/steamvr: fix signedness
Diffstat (limited to 'tracker-steamvr/steamvr.hpp')
-rw-r--r--tracker-steamvr/steamvr.hpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/tracker-steamvr/steamvr.hpp b/tracker-steamvr/steamvr.hpp
index 88fa740a..c6f31fa9 100644
--- a/tracker-steamvr/steamvr.hpp
+++ b/tracker-steamvr/steamvr.hpp
@@ -1,25 +1,19 @@
#pragma once
-#include "api/plugin-api.hpp"
+
#include "ui_dialog.h"
+#include "api/plugin-api.hpp"
#include "options/options.hpp"
-#include "compat/euler.hpp"
-
-#include <openvr.h>
-
-#include <cmath>
-#include <memory>
#include <tuple>
+#include <climits>
#include <QString>
#include <QMutex>
-#include <QMutexLocker>
#include <QList>
-using namespace options;
+#include <openvr.h>
-using rmat = euler::rmat;
-using euler_t = euler::euler_t;
+using namespace options;
using vr_error_t = vr::EVRInitError;
using vr_t = vr::IVRSystem*;