corrected typo in src/Fl_Gl_Choice.cxx

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6809 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
engelsman 2009-06-30 18:48:22 +00:00
parent 0de26b628e
commit dc40b3708a

View File

@ -264,7 +264,7 @@ static void del_context(GLContext ctx) {
GLContext fl_create_gl_context(XVisualInfo* vis) {
GLContext shared_ctx = 0;
if (context_list && nContext) shared_context = context_list[0];
if (context_list && nContext) shared_ctx = context_list[0];
GLContext context = glXCreateContext(fl_display, vis, shared_ctx, 1);
if (context)
add_context(context);