mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 02:43:03 +00:00
Fix potential uninitialized variable.
This commit is contained in:
parent
c473ffeb39
commit
a61f0dfd61
2
gfx/gl.c
2
gfx/gl.c
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user