mirror of
https://github.com/glfw/glfw.git
synced 2024-11-23 05:24:34 +00:00
Fixed missing dereference in b29fbc82c2
.
This commit is contained in:
parent
9c0ec39770
commit
70c1aff94c
@ -313,7 +313,7 @@ GLFWAPI void glfwGetMonitorPhysicalSize(GLFWmonitor* handle, int* width, int* he
|
|||||||
if (width)
|
if (width)
|
||||||
*width = 0;
|
*width = 0;
|
||||||
if (height)
|
if (height)
|
||||||
height = 0;
|
*height = 0;
|
||||||
|
|
||||||
_GLFW_REQUIRE_INIT();
|
_GLFW_REQUIRE_INIT();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user