1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Fix cursor position coordinate delimiter

Comma would be great but we don't control the locale.
This commit is contained in:
Camilla Berglund 2016-06-05 19:37:08 +02:00
parent 9a781cef53
commit b6b8ff591d

View File

@ -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;
}