From 63e3ef67fd3963e1d8e18c260ad49b48be949009 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Tue, 15 Jul 2003 14:02:39 +0000 Subject: [PATCH] Small error message fix --- src/native/linux/org_lwjgl_opengl_BaseGL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);