Fix cursor position coordinate delimiter

Comma would be great but we don't control the locale.
master
Camilla Berglund ago%!(EXTRA string=9 years)
parent 9a781cef53
commit b6b8ff591d
  1. 2
      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;
}

Loading…
Cancel
Save