Browse Source

Don't X error in SDL_CreateWindow with unsupported GL attributes

Sven Hesse 8 năm trước cách đây
mục cha
commit
b89cac6761
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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);
 }