From 70c1aff94c0ff06fa29b9dbe37edc3ccd791972e Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 8 Apr 2014 12:07:44 +0200 Subject: [PATCH] Fixed missing dereference in b29fbc82c2. --- src/monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monitor.c b/src/monitor.c index a953cb4b..662c4266 100644 --- a/src/monitor.c +++ b/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();