We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec0b1d8 commit e9bd486Copy full SHA for e9bd486
src/zglfw.zig
@@ -785,7 +785,7 @@ pub fn setWindowAttribute(
785
comptime attrib: Window.Attribute,
786
value: Window.Attribute.ValueType(attrib),
787
) void {
788
- setWindowAttributeUntyped(window, cIntCast(attrib), value);
+ setWindowAttributeUntyped(window, attrib, cIntCast(value));
789
}
790
pub const setWindowAttributeUntyped = glfwSetWindowAttrib;
791
extern fn glfwSetWindowAttrib(window: *Window, attrib: Window.Attribute, value: c_int) void;
0 commit comments