Fix demo for removing default struct values

This commit is contained in:
gingerBill
2018-05-20 17:39:49 +01:00
parent 4d052d5119
commit 718b80ba39
3 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ union_type :: proc() {
}
Vector3 :: struct {x, y, z: f32};
Quaternion :: struct {x, y, z: f32, w: f32 = 1};
Quaternion :: struct {x, y, z, w: f32};
// More realistic examples
{