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);