1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2025-04-04 08:08:51 -04:00

Removed tautological test.

This commit is contained in:
Camilla Berglund 2014-04-08 15:50:27 +02:00
parent 20792526c6
commit 5e008ad074

View File

@ -47,18 +47,13 @@ static int Max(int a, int b)
void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean focused) void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean focused)
{ {
if (focused) if (focused)
{
if (_glfw.focusedWindow != window)
{ {
_glfw.focusedWindow = window; _glfw.focusedWindow = window;
if (window->callbacks.focus) if (window->callbacks.focus)
window->callbacks.focus((GLFWwindow*) window, focused); window->callbacks.focus((GLFWwindow*) window, focused);
} }
}
else else
{
if (_glfw.focusedWindow == window)
{ {
int i; int i;
@ -82,7 +77,6 @@ void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean focused)
} }
} }
} }
}
void _glfwInputWindowPos(_GLFWwindow* window, int x, int y) void _glfwInputWindowPos(_GLFWwindow* window, int x, int y)
{ {