Skip to content

Commit

Permalink
all: fix the build
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Gutekanst <[email protected]>
  • Loading branch information
slimsag committed Sep 5, 2023
1 parent 5b25db1 commit f2f6df9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gfx2d/Sprite2D.zig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const ecs = @import("ecs");
const Engine = @import("../engine.zig").Engine;
const mach = @import("../main.zig");

const math = @import("../math.zig");
const math = mach.math;
const mat = math.mat;
const Vec2 = math.Vec2;
const Vec3 = math.Vec3;
Expand Down
2 changes: 1 addition & 1 deletion src/math/mat.zig
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ test "mat4x4_ident" {
math.Vec4.init(1, 0, 0, 0),
math.Vec4.init(0, 1, 0, 0),
math.Vec4.init(0, 0, 1, 0),
math.Vec4.init(0, 0, 1, 1),
math.Vec4.init(0, 0, 0, 1),
},
});
}
Expand Down

0 comments on commit f2f6df9

Please sign in to comment.