diff --git a/Source/Core/DolphinWX/GLInterface/X11_Util.cpp b/Source/Core/DolphinWX/GLInterface/X11_Util.cpp index 0842a34d65..5c78a7adf8 100644 --- a/Source/Core/DolphinWX/GLInterface/X11_Util.cpp +++ b/Source/Core/DolphinWX/GLInterface/X11_Util.cpp @@ -21,14 +21,12 @@ Window cX11Window::CreateXWindow(Window parent, XVisualInfo *vi) // Setup window attributes attr.colormap = colormap; - attr.background_pixel = BlackPixel(dpy, 0); - attr.border_pixel = 0; // Create the window win = XCreateWindow(dpy, parent, 0, 0, 1, 1, 0, vi->depth, InputOutput, vi->visual, - CWBorderPixel | CWBackPixel | CWColormap, &attr); + CWColormap, &attr); XSelectInput(dpy, parent, StructureNotifyMask); XMapWindow(dpy, win); XSync(dpy, True);