mirror of
https://github.com/glfw/glfw.git
synced 2024-11-11 13:03:52 +00:00
Allow closing of NULL.
This commit is contained in:
parent
d43e0b50d0
commit
849977c7b2
@ -523,6 +523,10 @@ GLFWAPI void glfwCloseWindow(GLFWwindow handle)
|
||||
|
||||
_GLFWwindow* window = (_GLFWwindow*) handle;
|
||||
|
||||
// Allow closing of NULL (to match the behavior of free)
|
||||
if (window == NULL)
|
||||
return;
|
||||
|
||||
// Show mouse pointer again (if hidden)
|
||||
if (window == _glfwLibrary.cursorLockWindow)
|
||||
glfwEnable(window, GLFW_MOUSE_CURSOR);
|
||||
|
Loading…
Reference in New Issue
Block a user