From de588727adb1064b78cdcd3653d1058e23d9d132 Mon Sep 17 00:00:00 2001 From: "John F. Fay" Date: Mon, 25 Sep 2006 14:27:10 +0000 Subject: [PATCH 1/1] Fixing a typo bug in the display mode checking (removing multisampling if it is not supported) git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@709 7f0cb862-5218-0410-a997-914c9d46530a --- src/freeglut_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freeglut_window.c b/src/freeglut_window.c index c60aee0..0d2705a 100644 --- a/src/freeglut_window.c +++ b/src/freeglut_window.c @@ -437,7 +437,7 @@ void fgOpenWindow( SFG_Window* window, const char* title, { fgState.DisplayMode &= ~GLUT_MULTISAMPLE ; window->Window.VisualInfo = fgChooseVisual( ); - fgState.DisplayMode &= GLUT_MULTISAMPLE; + fgState.DisplayMode |= GLUT_MULTISAMPLE; } } -- 1.7.10.4