Fix copypaste error in glfwGetMonitorWorkarea

Related to #1322.
master
Doug Binks ago%!(EXTRA string=7 years) committed by Camilla Löwy
parent 154db76a6c
commit e6d22346f9
  1. 4
      src/monitor.c

@ -341,8 +341,8 @@ GLFWAPI void glfwGetMonitorWorkarea(GLFWmonitor* handle, int* xpos, int* ypos, i
*ypos = 0; *ypos = 0;
if (width) if (width)
*width = 0; *width = 0;
if (width) if (height)
*width = 0; *height = 0;
_GLFW_REQUIRE_INIT(); _GLFW_REQUIRE_INIT();

Loading…
Cancel
Save