all: fix the build

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-09-04 17:04:30 -07:00
parent 5b25db1025
commit f2f6df9f7b
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ const ecs = @import("ecs");
const Engine = @import("../engine.zig").Engine; const Engine = @import("../engine.zig").Engine;
const mach = @import("../main.zig"); const mach = @import("../main.zig");
const math = @import("../math.zig"); const math = mach.math;
const mat = math.mat; const mat = math.mat;
const Vec2 = math.Vec2; const Vec2 = math.Vec2;
const Vec3 = math.Vec3; const Vec3 = math.Vec3;

View file

@ -377,7 +377,7 @@ test "mat4x4_ident" {
math.Vec4.init(1, 0, 0, 0), math.Vec4.init(1, 0, 0, 0),
math.Vec4.init(0, 1, 0, 0), math.Vec4.init(0, 1, 0, 0),
math.Vec4.init(0, 0, 1, 0), math.Vec4.init(0, 0, 1, 0),
math.Vec4.init(0, 0, 1, 1), math.Vec4.init(0, 0, 0, 1),
}, },
}); });
} }