Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2021-07-06 13:36:42 +0300
committerSergey Sharybin <sergey@blender.org>2021-07-06 13:36:42 +0300
commitae8fa7062cb4ac9e48acb4c7633142e17c4c9c29 (patch)
treea023e71a322f72bfddefe8a58af33b15c1685991 /source/blender/windowmanager/xr
parent3382b07ad6cfbb117cf8ec8fc95aa46cf585237e (diff)
Fix incompatible type passed to XR haptic
Likely caused by recent fixed-size types changes. Seems to be no-functional-changes since the function is unused.
Diffstat (limited to 'source/blender/windowmanager/xr')
-rw-r--r--source/blender/windowmanager/xr/intern/wm_xr_actions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/xr/intern/wm_xr_actions.c b/source/blender/windowmanager/xr/intern/wm_xr_actions.c
index 51ed3dcfd3c..7eabd29baa0 100644
--- a/source/blender/windowmanager/xr/intern/wm_xr_actions.c
+++ b/source/blender/windowmanager/xr/intern/wm_xr_actions.c
@@ -462,7 +462,7 @@ bool WM_xr_action_state_get(const wmXrData *xr,
bool WM_xr_haptic_action_apply(wmXrData *xr,
const char *action_set_name,
const char *action_name,
- const long long *duration,
+ const int64_t *duration,
const float *frequency,
const float *amplitude)
{