From b59b11101b7c39969583d0cef95e41f5b9a201f1 Mon Sep 17 00:00:00 2001 From: korejan <64199710+korejan@users.noreply.github.com> Date: Thu, 27 Jun 2024 22:42:21 +0100 Subject: [PATCH] a/bindings: Fix typos in extension names Fixes extension name entries with "XR_" prefix in touch_controller_pro & touch_controller_plus entries causing incorrect code to be generated. --- src/xrt/auxiliary/bindings/bindings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrt/auxiliary/bindings/bindings.json b/src/xrt/auxiliary/bindings/bindings.json index 6868f34a8..0f4035f86 100644 --- a/src/xrt/auxiliary/bindings/bindings.json +++ b/src/xrt/auxiliary/bindings/bindings.json @@ -2947,7 +2947,7 @@ "/interaction_profiles/facebook/touch_controller_pro": { "title": "Meta Quest Touch Pro Controller", "type": "tracked_controller", - "extension": "XR_FB_touch_controller_pro", + "extension": "FB_touch_controller_pro", "steamvr_controllertype": "oculus_touch", "monado_device": "XRT_DEVICE_TOUCH_PRO_CONTROLLER", "extended_by": ["ext/palm_pose", "grip_surface", "ext/hand_interaction_poses"], @@ -3313,7 +3313,7 @@ "/interaction_profiles/facebook/touch_controller_plus": { "title": "Meta Quest Touch Plus Controller", "type": "tracked_controller", - "extension": "XR_META_touch_controller_plus", + "extension": "META_touch_controller_plus", "steamvr_controllertype": "oculus_touch", "monado_device": "XRT_DEVICE_TOUCH_PLUS_CONTROLLER", "extended_by": ["ext/palm_pose", "grip_surface", "ext/hand_interaction_poses"],