Browse Source

Error message grammar fix.

Camilla Berglund 13 years ago
parent
commit
bfc746a847
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/x11_opengl.c

+ 1 - 1
src/x11_opengl.c

@@ -445,7 +445,7 @@ int _glfwInitOpenGL(void)
     // Check if GLX is supported on this display
     // Check if GLX is supported on this display
     if (!glXQueryExtension(_glfwLibrary.X11.display, NULL, NULL))
     if (!glXQueryExtension(_glfwLibrary.X11.display, NULL, NULL))
     {
     {
-        _glfwSetError(GLFW_OPENGL_UNAVAILABLE, "X11/GLX: GLX supported not found");
+        _glfwSetError(GLFW_OPENGL_UNAVAILABLE, "X11/GLX: GLX support not found");
         return GL_FALSE;
         return GL_FALSE;
     }
     }