exa: fix assert logic thinko from 361a9eb953

- I guess failing PrepareAccess is rare, since this a 3 year old bug.
This commit is contained in:
Maarten Maathuis 2008-08-17 19:57:02 +02:00
parent 582f1381ae
commit c662381a14

View File

@ -499,7 +499,7 @@ ExaDoPrepareAccess(DrawablePtr pDrawable, int index)
if (!(*pExaScr->info->PrepareAccess) (pPixmap, index)) {
ExaPixmapPriv (pPixmap);
if (pExaPixmap->score != EXA_PIXMAP_SCORE_PINNED)
if (pExaPixmap->score == EXA_PIXMAP_SCORE_PINNED)
FatalError("Driver failed PrepareAccess on a pinned pixmap\n");
exaMoveOutPixmap (pPixmap);
}