fix(build): fix zig detection script

This commit is contained in:
phaneron 2024-06-28 00:40:39 -04:00
parent 67216b79ee
commit aba696f628

View file

@ -92,7 +92,7 @@ pub fn add_defines(compile_step: *std.Build.Step.Compile) void {
var system_version: []const u8 = "9999";
if (isWindows) {
switch (t.os.version_range.semver.min.major) {
switch (t.os.version_range.windows.min.major) {
5 => {
system_version = WHOA_WIN_XP;
},