diff options
Diffstat (limited to 'src/maths/maths.h')
-rw-r--r-- | src/maths/maths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maths/maths.h b/src/maths/maths.h index 0b3760e..9e71f79 100644 --- a/src/maths/maths.h +++ b/src/maths/maths.h @@ -311,7 +311,7 @@ static Transform transform_create(Vec3 pos, Quat rot, f32 scale) { return (Transform){ .position = pos, .rotation = rot, .scale = scale, .is_dirty = true }; } - Mat4 transform_to_mat(Transform *tf); +Mat4 transform_to_mat(Transform *tf); // --- Sizing asserts |