Browse Source

Fix indent characters

Lipid 7 years ago
parent
commit
92ce02dab0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/math/math.odin

+ 1 - 1
core/math/math.odin

@@ -149,7 +149,7 @@ to_degrees :: proc(radians: f32) -> f32 { return radians * 360 / TAU; }
 
 
 mul :: proc[
-    mat3_mul,
+	mat3_mul,
 	mat4_mul, mat4_mul_vec4,
 	quat_mul, quat_mulf,
 ];