Fixed broken call to glfwShowWindow.

master
Camilla Berglund ago%!(EXTRA string=13 years)
parent a2ca095b86
commit 3d2722dc4c
  1. 2
      src/window.c

@ -318,7 +318,7 @@ GLFWAPI GLFWwindow glfwCreateWindow(int width, int height,
return GL_FALSE;
}
glfwShowWindow(window, 1); // TODO: consider if this is necessary!
glfwShowWindow(window);
// Cache the actual (as opposed to requested) window parameters
_glfwPlatformRefreshWindowParams(window);

Loading…
Cancel
Save