# HG changeset patch # User nick # Date 1015836486 0 # Node ID 0700ce9958d2dcfd3560e7553fe7ce16edfea06a # Parent 75e4f695f2043143ee01e529e4d08ad28da65a0d Fixed default background color for proper color key usage diff -r 75e4f695f204 -r 0700ce9958d2 libvo/vo_xvidix.c --- a/libvo/vo_xvidix.c Mon Mar 11 08:42:07 2002 +0000 +++ b/libvo/vo_xvidix.c Mon Mar 11 08:48:06 2002 +0000 @@ -296,7 +296,7 @@ window_depth = 24; XMatchVisualInfo(mDisplay, mScreen, window_depth, TrueColor, &vinfo); - xswa.background_pixel = BlackPixel(mDisplay, mScreen); + xswa.background_pixel = fgColor; //BlackPixel(mDisplay, mScreen); xswa.border_pixel = 0; xswa.colormap = XCreateColormap(mDisplay, RootWindow(mDisplay, mScreen), vinfo.visual, AllocNone);