Skip to content

Commit 84133c1

Browse files
committed
Revert "Go back to using raw universe as default."
This reverts commit 25f0417. Since SlimeVR/SlimeVR-OpenVR-Driver#24 has been merged, match the universe introduced there. Will create release once a driver release has happened.
1 parent a6cb451 commit 84133c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ static const std::unordered_map<std::string, std::pair<ETrackingUniverseOrigin,
652652
{"static_standing", {ETrackingUniverseOrigin::TrackingUniverseRawAndUncalibrated, true}}
653653
};
654654
// default is static_standing
655-
static constexpr std::pair<ETrackingUniverseOrigin, bool> universe_default = {ETrackingUniverseOrigin::TrackingUniverseRawAndUncalibrated, false};
655+
static constexpr std::pair<ETrackingUniverseOrigin, bool> universe_default = {ETrackingUniverseOrigin::TrackingUniverseRawAndUncalibrated, true};
656656

657657
// TEMP, cba to setup a proper header file.
658658
void test_lto();
@@ -712,10 +712,10 @@ int main(int argc, char* argv[]) {
712712
parser,
713713
"universe",
714714
"Tracking Universe. Possible values:\n"
715-
" raw: raw/uncalibrated space (current default)\n"
715+
" raw: raw/uncalibrated space\n"
716716
" seated: seated universe\n"
717717
" standing: standing universe\n"
718-
" static_standing: standing universe unaffected by playspace movement",
718+
" static_standing: standing universe unaffected by playspace movement (this matches slimevr driver, default)",
719719
{"universe"},
720720
universe_map,
721721
universe_default

0 commit comments

Comments
 (0)