From 30c43d60a5eb482d91b11705bfe95f5eff38a683 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Thu, 13 Oct 2011 14:07:24 +0200 Subject: [PATCH] Removed superfluous test. --- src/window.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/window.c b/src/window.c index 29707bd1..68893f09 100644 --- a/src/window.c +++ b/src/window.c @@ -154,9 +154,6 @@ void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean activated) void _glfwInputWindowPos(_GLFWwindow* window, int x, int y) { - if (window->positionX == x && window->positionY == y) - return; - window->positionX = x; window->positionY = y; }