diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/wrapped/wrappedsdl2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wrapped/wrappedsdl2.c b/src/wrapped/wrappedsdl2.c index 5771d27c..af97a943 100755 --- a/src/wrapped/wrappedsdl2.c +++ b/src/wrapped/wrappedsdl2.c @@ -645,6 +645,8 @@ EXPORT void* my2_SDL_GL_GetProcAddress(x64emu_t* emu, void* name) printf_log(LOG_DEBUG, "Calling SDL_GL_GetProcAddress(%s)\n", rname); sdl2_my_t *my = (sdl2_my_t *)emu->context->sdl2lib->priv.w.p2; // check if glxprocaddress is filled, and search for lib and fill it if needed + if(!emu->context->glxprocaddress) + emu->context->glxprocaddress = (procaddess_t)my->SDL_GL_GetProcAddress; if(!emu->context->glwrappers) fillGLProcWrapper(emu->context); // get proc adress using actual glXGetProcAddress |