Update glfw from upstream

This commit is contained in:
Kovid Goyal
2018-03-28 19:57:01 +05:30
parent bfa53d4b45
commit 9ba2c4b397
3 changed files with 2 additions and 5 deletions

1
glfw/wl_init.c vendored
View File

@@ -484,7 +484,6 @@ static void keyboardHandleKey(void* data,
{
_glfw.wl.keyRepeatInfo.glfwKeyCode = keyCode;
_glfw.wl.keyRepeatInfo.scancode = key;
_glfw.wl.keyRepeatInfo.isFirstRepeat = GLFW_TRUE;
_glfw.wl.keyRepeatInfo.nextRepeatAt = glfwGetTime() + (double)(_glfw.wl.keyboardRepeatDelay) / 1000.0;
_glfw.wl.keyRepeatInfo.keyboardFocus = window;
}