From e486794be37018bfeeb3cf2c83936a3b30c2ae6e Mon Sep 17 00:00:00 2001 From: InKryption <59504965+InKryption@users.noreply.github.com> Date: Thu, 11 Nov 2021 17:06:26 +0100 Subject: [PATCH] glfw: Make enum value name the same format as other enum value names --- glfw/src/Window.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/src/Window.zig b/glfw/src/Window.zig index fae21a25..c6e7ca43 100644 --- a/glfw/src/Window.zig +++ b/glfw/src/Window.zig @@ -97,7 +97,7 @@ pub const Hint = enum(c_int) { maximized = c.GLFW_MAXIMIZED, /// Cursor centering window hint - center = c.GLFW_CENTER_CURSOR, + center_cursor = c.GLFW_CENTER_CURSOR, /// Window framebuffer transparency hint transparent_framebuffer = c.GLFW_TRANSPARENT_FRAMEBUFFER,