From b6b8ff591d0d50d6256c696d8a595b304e2aa3ec Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 5 Jun 2016 19:37:08 +0200 Subject: [PATCH] Fix cursor position coordinate delimiter Comma would be great but we don't control the locale. --- src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.c b/src/input.c index bb188648..614c6ef3 100644 --- a/src/input.c +++ b/src/input.c @@ -336,7 +336,7 @@ GLFWAPI void glfwSetCursorPos(GLFWwindow* handle, double xpos, double ypos) ypos != ypos || ypos < -DBL_MAX || ypos > DBL_MAX) { _glfwInputError(GLFW_INVALID_VALUE, - "Invalid cursor position %fx%f", + "Invalid cursor position %f %f", xpos, ypos); return; }