From ab684b7c66098505b8dc17b1f0746a92ed3c83f3 Mon Sep 17 00:00:00 2001 From: havrik <63151271+havrik@users.noreply.github.com> Date: Thu, 16 Nov 2023 11:38:47 +0300 Subject: [PATCH] Fix definition logic misspell in 'glm_quat_normalize_to' -> cglm/quat.h --- include/cglm/quat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cglm/quat.h b/include/cglm/quat.h index b34fa80..ab0c590 100644 --- a/include/cglm/quat.h +++ b/include/cglm/quat.h @@ -258,7 +258,7 @@ glm_quat_normalize_to(versor q, versor dest) { } glmm_store(dest, wasm_f32x4_div(x0, wasm_f32x4_sqrt(xdot))); -#elif defined( __SSE2__ ) || defined( __SSE2__ ) +#elif defined( __SSE__ ) || defined( __SSE2__ ) __m128 xdot, x0; float dot;