From 3a095ca07778ec2e0f326870d4228d64d26b0d6e Mon Sep 17 00:00:00 2001 From: Andrew Gutekanst Date: Tue, 7 Feb 2023 20:23:43 -0500 Subject: [PATCH] mach: update to latest core API --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 0a12cd4d..499f81cc 100644 --- a/build.zig +++ b/build.zig @@ -62,7 +62,7 @@ pub fn build(b: *std.build.Builder) !void { const model3d_test_step = b.step("test-model3d", "Run Model3D library tests"); const mach_test_step = b.step("test-mach", "Run Engine library tests"); - core_test_step.dependOn(&core.testStep(b, mode, target).step); + core_test_step.dependOn(&(try core.testStep(b, mode, target)).step); freetype_test_step.dependOn(&freetype.testStep(b, mode, target).step); ecs_test_step.dependOn(&ecs.testStep(b, mode, target).step); basisu_test_step.dependOn(&basisu.testStep(b, mode, target).step);