Skip to content

Commit

Permalink
Disable debug mode - fixes some OpenVR issues
Browse files Browse the repository at this point in the history
  • Loading branch information
oneup03 committed Jul 18, 2024
1 parent 89c037b commit 13a9003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vrto3d/src/hmd_device_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ vr::EVRInitError MockControllerDeviceDriver::Activate( uint32_t unObjectId )
vrp->SetFloatProperty( container, vr::Prop_DisplayFrequency_Float, stereo_display_component_->GetConfig().display_frequency);
vrp->SetFloatProperty( container, vr::Prop_SecondsFromVsyncToPhotons_Float, stereo_display_component_->GetConfig().display_latency);
vrp->SetBoolProperty( container, vr::Prop_IsOnDesktop_Bool, false);
vrp->SetBoolProperty( container, vr::Prop_DisplayDebugMode_Bool, true);
vrp->SetBoolProperty( container, vr::Prop_DisplayDebugMode_Bool, false);
vrp->SetBoolProperty( container, vr::Prop_HasDriverDirectModeComponent_Bool, false);
vrp->SetBoolProperty( container, vr::Prop_Hmd_SupportsHDR10_Bool, stereo_display_component_->GetConfig().hdr_enable);
if (stereo_display_component_->GetConfig().depth_gauge)
Expand Down

0 comments on commit 13a9003

Please sign in to comment.