From ac5ad34a958b6c37ec2e5637d14887f38b4cf472 Mon Sep 17 00:00:00 2001 From: Robin Voetter Date: Sat, 1 Jun 2024 11:58:42 +0200 Subject: [PATCH] update to latest zig: update to new progress api --- .gitignore | 4 +++- src/build_integration.zig | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d34b8ae..6872411 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ zig-cache/ zig-out/ -.vscode/ \ No newline at end of file +.vscode/.zig-cache/ +.zig-cache/ +examples/.zig-cache diff --git a/src/build_integration.zig b/src/build_integration.zig index c1979ab..b04c246 100644 --- a/src/build_integration.zig +++ b/src/build_integration.zig @@ -165,7 +165,7 @@ pub const ShaderCompileStep = struct { } /// Internal build function. - fn make(step: *Build.Step, progress: *std.Progress.Node) !void { + fn make(step: *Build.Step, progress: std.Progress.Node) !void { _ = progress; const b = step.owner; const self: *ShaderCompileStep = @fieldParentPtr("step", step);