summaryrefslogtreecommitdiff
path: root/src/nv_dac.c
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2007-07-10 11:54:33 -0700
committerAaron Plattner <aplattner@nvidia.com>2007-07-10 11:54:33 -0700
commitec78618d685759a39d386e9929661037b167fe68 (patch)
tree49e65efea73c7f6b5471f0654beba3708f95bee1 /src/nv_dac.c
parent493822998184a1d79d6774686983cbd41930f253 (diff)
Bug #4686: Fix a minor GeForceFX + flatpanel + video overlay corruption issue.
This change was originally in XFree86 CVS, nv_dac.c version 1.36 but got reverted accidentally.
Diffstat (limited to 'src/nv_dac.c')
-rw-r--r--src/nv_dac.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nv_dac.c b/src/nv_dac.c
index e1f0740..7e8340d 100644
--- a/src/nv_dac.c
+++ b/src/nv_dac.c
@@ -118,7 +118,9 @@ NVDACInit(ScrnInfoPtr pScrn, DisplayModePtr mode)
vertBlankStart = vertStart;
horizStart = horizTotal - 5;
horizEnd = horizTotal - 2;
- horizBlankEnd = horizTotal + 4;
+ horizBlankEnd = horizTotal + 4;
+ if(pNv->Architecture == NV_ARCH_30)
+ horizTotal += 2;
}
pVga->CRTC[0x0] = Set8Bits(horizTotal);