Fixed glfwDestroyWindow not flushing the output buffer.

This commit is contained in:
Camilla Berglund
2014-03-12 20:53:57 +01:00
parent c84bd6d393
commit 2200f87492
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -1106,6 +1106,8 @@ void _glfwPlatformDestroyWindow(_GLFWwindow* window)
XFreeColormap(_glfw.x11.display, window->x11.colormap);
window->x11.colormap = (Colormap) 0;
}
XFlush(_glfw.x11.display);
}
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)