From e02753df46103304ac6b2dcfdfff4eec71f82db9 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Mon, 16 May 2016 18:45:04 +0200 Subject: [PATCH] gsdx ogl: oups, mandatory function pointer was wrongly optional --- plugins/GSdx/GSWnd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/GSdx/GSWnd.cpp b/plugins/GSdx/GSWnd.cpp index cdbab2da10..324dbc9f73 100644 --- a/plugins/GSdx/GSWnd.cpp +++ b/plugins/GSdx/GSWnd.cpp @@ -28,9 +28,9 @@ void GSWndGL::PopulateGlFunction() *(void**)&(gl_BlendColor) = GetProcAddress("glBlendColor"); // Load mandatory function pointer -#define GL_EXT_LOAD_OPT(ext) *(void**)&(ext) = GetProcAddress(#ext, true) +#define GL_EXT_LOAD(ext) *(void**)&(ext) = GetProcAddress(#ext, false) // Load extra function pointer -#define GL_EXT_LOAD(ext) *(void**)&(ext) = GetProcAddress(#ext, true) +#define GL_EXT_LOAD_OPT(ext) *(void**)&(ext) = GetProcAddress(#ext, true) GL_EXT_LOAD(glBlendEquationSeparate); GL_EXT_LOAD(glBlendFuncSeparate);