From 7f281be7e53ac274016a6af6b2b5dc6f8bddb810 Mon Sep 17 00:00:00 2001 From: Aaron Plattner Date: Fri, 30 Nov 2007 17:37:20 -0800 Subject: Bug #7309: Delay after disabling cursor to avoid wedging the cursor hardware on GeForce 6150. --- src/nv_driver.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index 265979e..4bcc391 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -2134,8 +2134,10 @@ NVRestore(ScrnInfoPtr pScrn) NVPtr pNv = NVPTR(pScrn); NVRegPtr nvReg = &pNv->SavedReg; - if(pNv->HWCursor) + if(pNv->HWCursor) { NVShowHideCursor(pNv, 0); + sleep(1); + } NVLockUnlock(pNv, 0); if(pNv->twoHeads) { -- cgit v1.2.3