From 7ce4898ee319d149cf86e938e7257ea7490d327f Mon Sep 17 00:00:00 2001 From: Egbert Eich Date: Wed, 27 Oct 2004 09:52:15 +0000 Subject: [PATCH] Removing vtSema shilding of accel sync - should have been '&&' instead of '||' anyway. --- src/i810_accel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i810_accel.c b/src/i810_accel.c index 9a90e50d..2b0b594a 100644 --- a/src/i810_accel.c +++ b/src/i810_accel.c @@ -259,7 +259,7 @@ I810Sync(ScrnInfoPtr pScrn) #ifdef XF86DRI /* VT switching tries to do this. */ - if ((!pI810->LockHeld && pI810->directRenderingEnabled) || pScrn->vtSema) { + if (!pI810->LockHeld && pI810->directRenderingEnabled) { return; } #endif