Merge branch 'marcus-rawkeys'. Changed handling of raw key codes.

This commit is contained in:
marcus256
2011-01-15 00:59:55 +01:00
21 changed files with 779 additions and 380 deletions
+1 -1
View File
@@ -37,7 +37,7 @@
static void key_callback(GLFWwindow window, int key, int action)
{
if (action == GLFW_PRESS && key == GLFW_KEY_ESC)
if (action == GLFW_PRESS && key == GLFW_KEY_ESCAPE)
glfwCloseWindow(window);
}