Skip to content

Commit

Permalink
OpenXR: Limit upper end of res scale to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Oct 31, 2023
1 parent 3a87869 commit a0ee81c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mods/vr/runtimes/OpenXR.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ struct OpenXR final : public VRRuntime {
PipelineState last_submit_state{};
PipelineState get_submit_state();

const ModSlider::Ptr resolution_scale{ ModSlider::create("OpenXR_ResolutionScale", 0.1f, 5.0f, 1.0f) };
const ModSlider::Ptr resolution_scale{ ModSlider::create("OpenXR_ResolutionScale", 0.1f, 3.0f, 1.0f) };
bool push_dummy_projection{ false };
bool ever_submitted{false};

Expand Down

0 comments on commit a0ee81c

Please sign in to comment.