Fixed unguarded calls to monitor callback.

This commit is contained in:
Camilla Berglund
2013-06-04 17:42:22 +02:00
parent 3498163da1
commit f9d1a37621
2 changed files with 5 additions and 2 deletions
+1
View File
@@ -461,6 +461,7 @@ skills.
* Matt Arsenault
* Keith Bauer
* John Bartholomew
* Niklas Bergström
* blanco
* Lambert Clara
* Noel Cower
+2
View File
@@ -140,6 +140,7 @@ void _glfwInputMonitorChange(void)
window->monitor = NULL;
}
if (_glfw.monitorCallback)
_glfw.monitorCallback((GLFWmonitor*) monitors[i], GLFW_DISCONNECTED);
}
@@ -161,6 +162,7 @@ void _glfwInputMonitorChange(void)
if (j < monitorCount)
continue;
if (_glfw.monitorCallback)
_glfw.monitorCallback((GLFWmonitor*) _glfw.monitors[i], GLFW_CONNECTED);
}