From 08e8fa31449cb1ca929b82641efa7b7312895f0a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 11 Oct 2018 03:38:50 +0200 Subject: [PATCH] This shouldn't return false --- dynamic.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dynamic.c b/dynamic.c index e011d802fa..6613a4f03c 100644 --- a/dynamic.c +++ b/dynamic.c @@ -1373,8 +1373,7 @@ bool rarch_environment_cb(unsigned cmd, void *data) return false; #if defined(HAVE_OPENGL) - if (!gl_set_core_context(cb->context_type)) - return false; + if (!gl_set_core_context(cb->context_type)) { } #endif cb->get_current_framebuffer = video_driver_get_current_framebuffer;