fix: windows gui build

This commit is contained in:
CJ van den Berg 2025-11-18 16:53:03 +01:00
parent 9984d5e2b5
commit e4fdc5b5dc
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -732,6 +732,7 @@ fn write_config_value_description(T: type, field_type: type, writer: *std.Io.Wri
u24 => try writer.print("24 bit hex color value in quotes", .{}), u24 => try writer.print("24 bit hex color value in quotes", .{}),
usize => try writer.print("positive integer", .{}), usize => try writer.print("positive integer", .{}),
u8 => try writer.print("positive integer up to 255", .{}), u8 => try writer.print("positive integer up to 255", .{}),
u16 => try writer.print("positive integer up to {d}", .{std.math.maxInt(u16)}),
else => unsupported_error(T, field_type), else => unsupported_error(T, field_type),
}, },
.bool => try writer.print("true or false", .{}), .bool => try writer.print("true or false", .{}),