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

Fix no-GLES-on-NSGL error type and description

This commit is contained in:
Camilla Berglund 2015-08-09 13:37:27 +02:00
parent f6defeff5d
commit 90adbe0451

View File

@ -67,8 +67,8 @@ int _glfwCreateContext(_GLFWwindow* window,
if (ctxconfig->api == GLFW_OPENGL_ES_API) if (ctxconfig->api == GLFW_OPENGL_ES_API)
{ {
_glfwInputError(GLFW_VERSION_UNAVAILABLE, _glfwInputError(GLFW_API_UNAVAILABLE,
"NSGL: This API does not support OpenGL ES"); "NSGL: OpenGL ES is not available on OS X");
return GL_FALSE; return GL_FALSE;
} }