From fc09ad68be4542dfe191117f42fb3ff8a4c584fd Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Sat, 21 Mar 2015 06:24:37 +0100 Subject: [PATCH] (GL) Fix unused variable warning --- gfx/drivers/gl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gfx/drivers/gl.c b/gfx/drivers/gl.c index dcc9c45c86..c380714786 100644 --- a/gfx/drivers/gl.c +++ b/gfx/drivers/gl.c @@ -1824,6 +1824,8 @@ static bool resolve_extensions(gl_t *gl) driver_t *driver = driver_get_ptr(); global_t *global = global_get_ptr(); settings_t *settings = config_get_ptr(); + + (void)global; #ifndef HAVE_OPENGLES const char *vendor = NULL; const char *renderer = NULL;