This commit is contained in:
Recep Aslantas
2016-09-19 20:37:07 +03:00
parent 5115814d5b
commit b42a599310
2 changed files with 2 additions and 2 deletions

View File

@@ -189,7 +189,7 @@ CGLM_INLINE
void
glm_mat4_inv(mat4 mat, mat4 dest) {
#if defined( __SSE__ ) || defined( __SSE2__ )
glm_mat4_inv_see2(mat, dest);
glm_mat4_inv_sse2(mat, dest);
#else
float t[6];
float det;