Skip to content

Commit

Permalink
update to latest zig
Browse files Browse the repository at this point in the history
  • Loading branch information
alichraghi committed Jul 16, 2024
1 parent 66b7b77 commit 0125bcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/build_integration.zig
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ pub const ShaderCompileStep = struct {
}

/// Internal build function.
fn make(step: *Build.Step, progress: std.Progress.Node) !void {
_ = progress;
fn make(step: *Build.Step, options: Build.Step.MakeOptions) !void {
_ = options;
const b = step.owner;
const self: *ShaderCompileStep = @fieldParentPtr("step", step);
const cwd = std.fs.cwd();
Expand Down

0 comments on commit 0125bcc

Please sign in to comment.