From a1ac0440bba690368aa4226468ce571be1a09d95 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Fri, 18 Aug 2006 17:30:00 +0300 Subject: [PATCH] dix: fix whiteroot thinko Note to self: run git update-index _after_ testing, not just before. --- dix/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dix/window.c b/dix/window.c index c16f51418..0beeb3a4d 100644 --- a/dix/window.c +++ b/dix/window.c @@ -519,9 +519,9 @@ InitRootWindow(WindowPtr pWin) } else { if (blackRoot) - pWin->background.pixel = blackPixel; + pWin->background.pixel = pScreen->blackPixel; else - pWin->background.pixel = whitePixel; + pWin->background.pixel = pScreen->whitePixel; backFlag |= CWBackPixel; }