Fixed missing dereference in b29fbc82c2.

master
Camilla Berglund ago%!(EXTRA string=11 years)
parent 9c0ec39770
commit 70c1aff94c
  1. 2
      src/monitor.c

@ -313,7 +313,7 @@ GLFWAPI void glfwGetMonitorPhysicalSize(GLFWmonitor* handle, int* width, int* he
if (width)
*width = 0;
if (height)
height = 0;
*height = 0;
_GLFW_REQUIRE_INIT();

Loading…
Cancel
Save