Remove check on array/slice/dynamic element size

This commit is contained in:
Ginger Bill
2017-05-02 20:17:53 +01:00
parent 19bde275a3
commit 206a3e093c
5 changed files with 56 additions and 32 deletions
+1 -1
View File
@@ -277,7 +277,7 @@ mat4_rotate :: proc(v: Vec3, angle_radians: f32) -> Mat4 {
s := sin(angle_radians);
a := norm(v);
t := a * Vec3{1-c};
t := a * (1-c);
rot := mat4_identity();