From 62b6ae5f18cb10dc9103f4f40e4b4981640f409f Mon Sep 17 00:00:00 2001 From: realtradam Date: Thu, 15 Jun 2023 18:27:12 -0400 Subject: fixed one math func --- src/math/rodeo_mat4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/rodeo_mat4.c b/src/math/rodeo_mat4.c index a842d78..958e123 100644 --- a/src/math/rodeo_mat4.c +++ b/src/math/rodeo_mat4.c @@ -67,7 +67,7 @@ rodeo_math_mat4_t rodeo_math_mat4_translate(rodeo_math_mat4_t m, rodeo_math_vec3_t v) { return irodeo_math_cglmMat4_to_rodeoMat4( - glms_translated( + glms_translate( irodeo_math_rodeoMat4_to_cglmMat4(m), irodeo_math_rodeoVec3_to_cglmVec3(v) ) -- cgit v1.2.3