From e7d0a7335355271a284795e667d7c3b060a9e5f9 Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Sat, 24 Oct 2020 23:57:39 +0100 Subject: [PATCH] OpenXR: Fix right actions not being marked as active in xrSyncActions call --- src/modules/headset/headset_openxr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/headset/headset_openxr.c b/src/modules/headset/headset_openxr.c index 95a4fdc8..4ffc65b7 100644 --- a/src/modules/headset/headset_openxr.c +++ b/src/modules/headset/headset_openxr.c @@ -881,7 +881,7 @@ static void openxr_update(float dt) { XrActionsSyncInfo syncInfo = { .type = XR_TYPE_ACTIONS_SYNC_INFO, - .countActiveActionSets = 1, + .countActiveActionSets = 2, .activeActionSets = (XrActiveActionSet[]) { { state.actionSet, state.actionFilters[0] }, { state.actionSet, state.actionFilters[1] }