You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AprilTagTrackers/MyApp.cpp
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,11 @@ int MyApp::OnExit()
23
23
boolMyApp::OnInit()
24
24
{
25
25
userConfig.Load();
26
+
27
+
//The next two lines were added as a quick fix. The two options should be handeled differently from other parameters, so as a quick fix, they are reset on every launch of ATT.
26
28
userConfig.driver_version = SemVer::Parse(REFLECTABLE_STRINGIZE(ATT_DRIVER_VERSION)); //a quick patch to prevent parameters from having an outdated version number
29
+
userConfig.disableOpenVrApi = false; //since disable openvr api isnt part of the parameters, it isnt loaded properly. This ensures it is globaly disabled on every launch.
0 commit comments