The open source OpenXR runtime
0
fork

Configure Feed

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

t/common: Fix missing ifdef guard in target builder remote.

+3 -1
+3 -1
src/xrt/targets/common/target_builder_remote.c
··· 82 82 } 83 83 84 84 struct xrt_device *head = NULL, *left = NULL, *right = NULL; 85 - r_create_devices(port, &head, &left, &right); 86 85 86 + #ifdef XRT_BUILD_DRIVER_REMOTE 87 + r_create_devices(port, &head, &left, &right); 88 + #endif 87 89 if (head == NULL) { 88 90 u_system_devices_destroy(&usysd); 89 91 xrt_device_destroy(&left);