Merge pull request #152 from alichraghi/master

update to latest zig
This commit is contained in:
Robin Voetter
2024-07-16 09:17:12 +02:00
committed by GitHub

View File

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