dix: fix whiteroot thinko

Note to self: run git update-index _after_ testing, not just before.
This commit is contained in:
Daniel Stone 2006-08-18 17:30:00 +03:00 committed by Daniel Stone
parent 19f673b778
commit a1ac0440bb

View File

@ -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;
}