winex11: glXQueryExtension has its error and event base arguments swapped

compared with other *QueryExtension functions!
This commit is contained in:
Huw Davies 2006-06-22 12:44:43 +01:00 committed by Alexandre Julliard
parent 4964c1e940
commit 4d361ce002
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ LOAD_FUNCPTR(glXDestroyGLXPixmap)
#undef LOAD_FUNCPTR
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);
} else {
wine_dlclose(opengl_handle, NULL, 0);