Skip to content

Commit

Permalink
Merge pull request #356 from havrik/patch-1
Browse files Browse the repository at this point in the history
Fix definition logic misspell in 'glm_quat_normalize_to' -> cglm/quat.h
  • Loading branch information
recp authored Nov 16, 2023
2 parents 58a4b47 + ab684b7 commit a81c0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cglm/quat.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit a81c0f0

Please sign in to comment.