The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

t/common: fix wrong (optical) hand-tracking role in lighthouse builder

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2521>

+2 -2
+2 -2
src/xrt/targets/common/target_builder_lighthouse.c
··· 711 711 if (hand_devices[0] != NULL) { 712 712 xsysd->xdevs[xsysd->xdev_count++] = hand_devices[0]; 713 713 left = hand_devices[0]; 714 - conforming_left_ht = hand_devices[0]; 714 + unobstructed_left_ht = hand_devices[0]; 715 715 } 716 716 717 717 if (hand_devices[1] != NULL) { 718 718 xsysd->xdevs[xsysd->xdev_count++] = hand_devices[1]; 719 719 right = hand_devices[1]; 720 - conforming_right_ht = hand_devices[1]; 720 + unobstructed_right_ht = hand_devices[1]; 721 721 } 722 722 } 723 723