Made the pointer-ness of object handles explicit.

This commit is contained in:
Camilla Berglund
2013-01-05 21:13:28 +01:00
parent fc79e0a3a8
commit 9af960e2dd
32 changed files with 246 additions and 245 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ GLFWAPI void glfwTerminate(void)
// Close all remaining windows
while (_glfw.windowListHead)
glfwDestroyWindow(_glfw.windowListHead);
glfwDestroyWindow((GLFWwindow*) _glfw.windowListHead);
_glfwDestroyMonitors();