From 933005a0229de38e81e4ffce56deeb48466bd97f Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Wed, 19 Jun 2013 13:49:51 +0200 Subject: [PATCH] Corrected comment. --- src/x11_window.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/x11_window.c b/src/x11_window.c index b34686d5..0ff8d043 100644 --- a/src/x11_window.c +++ b/src/x11_window.c @@ -505,8 +505,7 @@ static void processEvent(XEvent *event) window = _glfwFindWindowByHandle(event->xany.window); if (window == NULL) { - // This is either an event for a destroyed GLFW window or an event - // of a type not currently supported by GLFW + // This is an event for a window that has already been destroyed return; } }