summaryrefslogtreecommitdiff
path: root/src/maths/maths.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/maths/maths.c')
-rw-r--r--src/maths/maths.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maths/maths.c b/src/maths/maths.c
index 1c5a91a..19052fe 100644
--- a/src/maths/maths.c
+++ b/src/maths/maths.c
@@ -26,7 +26,7 @@ Mat4 mat4_ident() {
return (Mat4){ .data = { 1.0, 0., 0., 0., 0., 1., 0., 0., 0., 0., 1., 0., 0., 0., 0., 1.0 } };
}
-Mat4 transform_to_mat(Transform *tf) {
+Mat4 transform_to_mat(Transform* tf) {
Mat4 scale = mat4_scale(tf->scale);
Mat4 rotation = mat4_rotation(tf->rotation);
Mat4 translation = mat4_translation(tf->position);