From 388f3aa6596c21b90f75c9adbdda71c38180f1cd Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 23 Oct 2021 22:12:56 -0700 Subject: [PATCH] glfw: correct typo in constant name Signed-off-by: Stephen Gutekanst --- glfw/src/consts.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/src/consts.zig b/glfw/src/consts.zig index 3092271d..96b97fd9 100644 --- a/glfw/src/consts.zig +++ b/glfw/src/consts.zig @@ -104,7 +104,7 @@ pub const context_revision = c.GLFW_CONTEXT_REVISION; pub const context_robustness = c.GLFW_CONTEXT_ROBUSTNESS; /// OpenGL forward-compatibility hint and attribute. -pub const opengl_foward_compat = c.GLFW_OPENGL_FORWARD_COMPAT; +pub const opengl_forward_compat = c.GLFW_OPENGL_FORWARD_COMPAT; /// Debug mode context hint and attribute. pub const opengl_debug_context = c.GLFW_OPENGL_DEBUG_CONTEXT;