From ee880bda1b872f182b57809007dc1468787a52fb Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 6 Mar 2011 01:56:40 +0100 Subject: [PATCH] Moved window input boolean to correct block. --- src/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.h b/src/internal.h index b41ea99a..32631b02 100644 --- a/src/internal.h +++ b/src/internal.h @@ -162,7 +162,6 @@ struct _GLFWwindow int width, height; int positionX, positionY; int mode; // GLFW_WINDOW or GLFW_FULLSCREEN - GLboolean sysKeysDisabled; // system keys disabled flag GLboolean windowNoResize; // resize- and maximize gadgets disabled flag int refreshRate; // monitor refresh rate void* userPointer; @@ -171,6 +170,7 @@ struct _GLFWwindow GLboolean stickyKeys; GLboolean stickyMouseButtons; GLboolean keyRepeat; + GLboolean sysKeysDisabled; // system keys disabled flag int mousePosX, mousePosY; int scrollX, scrollY; char mouseButton[GLFW_MOUSE_BUTTON_LAST + 1];