Ver Fonte

Don't X error in SDL_CreateWindow with unsupported GL attributes

Sven Hesse há 7 anos atrás
pai
commit
b89cac6761
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      src/video/x11/SDL_x11opengl.c

+ 3 - 1
src/video/x11/SDL_x11opengl.c

@@ -463,7 +463,9 @@ X11_GL_InitExtensions(_THIS)
         }
     }
 
-    X11_XDestroyWindow(display, w);
+    if (w) {
+        X11_XDestroyWindow(display, w);
+    }
     X11_PumpEvents(_this);
 }