Fix copypaste error in glfwGetMonitorWorkarea

Related to #1322.
This commit is contained in:
Doug Binks 2018-09-08 17:18:24 +02:00 коммит произвёл Camilla Löwy
Родитель 154db76a6c
Коммит e6d22346f9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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();