Not checking for internal window pointer when making the context current

This commit is contained in:
Elviss Strazdins 2015-04-02 14:19:57 +03:00
parent 427c79b24b
commit a0ee612195

View File

@ -530,9 +530,6 @@ GLFWAPI void glfwMakeContextCurrent(GLFWwindow* handle)
_GLFW_REQUIRE_INIT();
if (_glfwPlatformGetCurrentContext() == window)
return;
_glfwPlatformMakeContextCurrent(window);
}