Fixed uninitialized variable.

master
Camilla Berglund ago%!(EXTRA string=12 years)
parent 3ee5b0e788
commit 28bf3f700d
  1. 2
      src/egl_context.c

@ -155,7 +155,7 @@ int _glfwCreateContext(_GLFWwindow* window,
const _GLFWfbconfig* fbconfig) const _GLFWfbconfig* fbconfig)
{ {
int attribs[40]; int attribs[40];
EGLint count; EGLint count = 0;
EGLConfig config; EGLConfig config;
EGLContext share = NULL; EGLContext share = NULL;

Loading…
Cancel
Save