From d0e4c874c39801281857ac8505871bd860c46bb3 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Fri, 1 Mar 2013 15:18:53 +0100 Subject: [PATCH] Moved sticky state. --- src/input.c | 3 +++ src/internal.h | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/input.c b/src/input.c index 58ec0bab..d2c366fa 100644 --- a/src/input.c +++ b/src/input.c @@ -30,6 +30,9 @@ #include "internal.h" +// Internal key state used for sticky keys +#define _GLFW_STICK 3 + // Sets the cursor mode for the specified window // diff --git a/src/internal.h b/src/internal.h index f6716331..753ef239 100644 --- a/src/internal.h +++ b/src/internal.h @@ -106,9 +106,6 @@ typedef struct _GLFWmonitor _GLFWmonitor; // Helper macros //======================================================================== -// Internal key state used for sticky keys -#define _GLFW_STICK 3 - // Checks for whether the library has been intitalized #define _GLFW_REQUIRE_INIT() \ if (!_glfwInitialized) \