Fixed corruption of robustness strategy hint.

master
Camilla Berglund ago%!(EXTRA string=13 years)
parent 8c6511085a
commit d11558e7e4
  1. 2
      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

Loading…
Cancel
Save