From d9b245ce66527d5aa77d2e9af7690d180e1160a7 Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 7 Mar 2019 17:32:47 +0100 Subject: [PATCH] Swap order of drivers gl2/glcore. --- gfx/video_driver.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index a31d8e1506..6150b329af 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -261,12 +261,12 @@ struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = { }; static const video_driver_t *video_drivers[] = { -#if defined(HAVE_OPENGL_CORE) - &video_gl_core, -#endif #ifdef HAVE_OPENGL &video_gl2, #endif +#if defined(HAVE_OPENGL_CORE) + &video_gl_core, +#endif #ifdef HAVE_OPENGL1 &video_gl1, #endif