Added missing window parameter return.

This commit is contained in:
Camilla Berglund 2012-09-30 15:43:26 +02:00
parent 38cad9aff0
commit c764ae81e8

View File

@ -745,6 +745,8 @@ GLFWAPI int glfwGetWindowParam(GLFWwindow handle, int param)
return window->resizable;
case GLFW_VISIBLE:
return window->visible;
case GLFW_CLIENT_API:
return window->clientAPI;
case GLFW_OPENGL_VERSION_MAJOR:
return window->glMajor;
case GLFW_OPENGL_VERSION_MINOR: