(GL/WGL) This regression caused cores that required GL to fail

because it would try to erroneously load GLESv2.dll instead of
OpenGL32.dll
This commit is contained in:
twinaphex 2020-01-09 19:26:53 +01:00
parent 2b1d1bc8cb
commit 0923985516

View File

@ -652,9 +652,9 @@ static void *gfx_ctx_wgl_init(video_frame_info_t *video_info, void *video_driver
#ifdef HAVE_DYNAMIC
#ifdef HAVE_OPENGL
dll_handle = dylib_load("libGLESv2.dll");
#else
dll_handle = dylib_load("OpenGL32.dll");
#else
dll_handle = dylib_load("libGLESv2.dll");
#endif
#endif