From a305f1e6fa117853bc93b76bd9ca9adec6e26022 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Tue, 7 Aug 2007 17:24:03 +0000 Subject: [PATCH] Corrected build error (stray ',') --- Source/OpenTK/Platform/X11/X11GLControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Platform/X11/X11GLControl.cs b/Source/OpenTK/Platform/X11/X11GLControl.cs index 626383e0..3cc2243b 100644 --- a/Source/OpenTK/Platform/X11/X11GLControl.cs +++ b/Source/OpenTK/Platform/X11/X11GLControl.cs @@ -75,7 +75,7 @@ namespace OpenTK.Platform.X11 ); glContext = new X11GLContext(info, - new DisplayMode(width, height, new ColorDepth(24), 16, 0, 0, 2, false, false, false, 0.0f), + new DisplayMode(width, height, new ColorDepth(24), 16, 0, 0, 2, false, false, false, 0.0f) ); glContext.CreateVisual();