From d11558e7e4b7a5560d3b2bedfce64db9d1521ff6 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Thu, 13 Dec 2012 20:01:57 +0100 Subject: [PATCH] Fixed corruption of robustness strategy hint. --- src/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.c b/src/window.c index 7b47e3f1..112b2d50 100644 --- a/src/window.c +++ b/src/window.c @@ -253,7 +253,7 @@ GLFWAPI GLFWwindow glfwCreateWindow(int width, int height, wndconfig.glForward = _glfwLibrary.hints.glForward ? GL_TRUE : GL_FALSE; wndconfig.glDebug = _glfwLibrary.hints.glDebug ? GL_TRUE : GL_FALSE; wndconfig.glProfile = _glfwLibrary.hints.glProfile; - wndconfig.glRobustness = _glfwLibrary.hints.glRobustness ? GL_TRUE : GL_FALSE; + wndconfig.glRobustness = _glfwLibrary.hints.glRobustness; wndconfig.share = (_GLFWwindow*) share; // Check the OpenGL bits of the window config