1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-23 10:48:51 -05:00

Removed superfluous test.

This commit is contained in:
Camilla Berglund 2011-10-13 14:07:24 +02:00
parent 72ef537425
commit 30c43d60a5

View File

@ -154,9 +154,6 @@ void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean activated)
void _glfwInputWindowPos(_GLFWwindow* window, int x, int y) void _glfwInputWindowPos(_GLFWwindow* window, int x, int y)
{ {
if (window->positionX == x && window->positionY == y)
return;
window->positionX = x; window->positionX = x;
window->positionY = y; window->positionY = y;
} }