Fix copypaste error in glfwGetMonitorWorkarea

Related to #1322.
This commit is contained in:
Doug Binks 2018-09-08 17:18:24 +02:00 committed by Camilla Löwy
parent 154db76a6c
commit e6d22346f9

View File

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