Fixed uninitialized variable.

This commit is contained in:
Camilla Berglund 2013-03-24 21:18:33 +01:00
parent 3ee5b0e788
commit 28bf3f700d
1 changed files with 1 additions and 1 deletions

View File

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