summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2007-11-30 17:37:20 -0800
committerAaron Plattner <aplattner@nvidia.com>2007-11-30 17:44:47 -0800
commit7f281be7e53ac274016a6af6b2b5dc6f8bddb810 (patch)
treeb4a13c419f8488dcdf685f489a14a97e96feeba7
parent100f5e24da2cbc79ed761083daa9a00b107008ab (diff)
Bug #7309: Delay after disabling cursor to avoid wedging the cursor hardware on GeForce 6150.
-rw-r--r--src/nv_driver.c4
1 files changed, 3 insertions, 1 deletions
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) {