Fix potential uninitialized variable.

This commit is contained in:
Themaister 2013-11-02 17:54:34 +01:00
parent c473ffeb39
commit a61f0dfd61

View File

@ -2181,7 +2181,7 @@ static void *gl_init(const video_info_t *video, const input_driver_t **input, vo
static bool gl_alive(void *data)
{
gl_t *gl = (gl_t*)data;
bool quit, resize;
bool quit = false, resize = false;
context_check_window_func(&quit,
&resize, &gl->win_width, &gl->win_height,