winex11: glXQueryExtension has its error and event base arguments swapped
compared with other *QueryExtension functions!
This commit is contained in:
parent
4964c1e940
commit
4d361ce002
|
@ -156,7 +156,7 @@ LOAD_FUNCPTR(glXDestroyGLXPixmap)
|
||||||
#undef LOAD_FUNCPTR
|
#undef LOAD_FUNCPTR
|
||||||
|
|
||||||
wine_tsx11_lock();
|
wine_tsx11_lock();
|
||||||
if (pglXQueryExtension(gdi_display, &event_base, &error_base) == True) {
|
if (pglXQueryExtension(gdi_display, &error_base, &event_base) == True) {
|
||||||
TRACE("GLX is up and running error_base = %d\n", error_base);
|
TRACE("GLX is up and running error_base = %d\n", error_base);
|
||||||
} else {
|
} else {
|
||||||
wine_dlclose(opengl_handle, NULL, 0);
|
wine_dlclose(opengl_handle, NULL, 0);
|
||||||
|
|
Loading…
Reference in New Issue