Added error reporting to glfwSetWindowParam.

This commit is contained in:
Camilla Berglund 2010-09-19 10:37:02 +02:00
parent c1ef0a875d
commit 8dfbce46fd

View File

@ -995,6 +995,7 @@ GLFWAPI int glfwGetWindowParam(GLFWwindow window, int param)
case GLFW_OPENGL_PROFILE:
return window->glProfile;
default:
_glfwSetError(GLFW_INVALID_ENUM);
return 0;
}
}