diff --git a/src/native/linux/org_lwjgl_opengl_BaseGL.cpp b/src/native/linux/org_lwjgl_opengl_BaseGL.cpp index 16139608..5db129d1 100644 --- a/src/native/linux/org_lwjgl_opengl_BaseGL.cpp +++ b/src/native/linux/org_lwjgl_opengl_BaseGL.cpp @@ -194,7 +194,7 @@ static bool initWindowGLX(JNIEnv *env, Display *disp, int screen, jstring title, if (glXIsDirect(disp, context) == False) { glXDestroyContext(disp, context); XFree(vis_info); - throwException(env, "Could not create a GLX context"); + throwException(env, "Could not create a direct GLX context"); return false; } createWindow(env, disp, screen, vis_info, title, x, y, width, height, fscreen);