summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@benzedrine.nwnk.net>2006-09-14 19:28:44 -0400
committerAdam Jackson <ajax@benzedrine.nwnk.net>2006-09-14 19:28:44 -0400
commit46af6d1e953f1eefb6edbba3d29fb9700e42c2bb (patch)
tree60090dceb530c278690c82362711dddd4ac96f69
parent63acf18b7e4ce3a9f7deab3a9088a1c41cab0191 (diff)
Always believe the monitor when it reports a reduced-blanking mode.autoconfig-for-7.2
CVT reduced blanking modes are typically only seen on digital connections to LCDs, but there are some monitors that report them as supported over the VGA connector too, which is perfectly legitimate, electrically speaking.
-rw-r--r--hw/xfree86/common/xf86Mode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86Mode.c b/hw/xfree86/common/xf86Mode.c
index ac3fb8c26..456331d3f 100644
--- a/hw/xfree86/common/xf86Mode.c
+++ b/hw/xfree86/common/xf86Mode.c
@@ -832,7 +832,7 @@ xf86CheckModeForMonitor(DisplayModePtr mode, MonPtr monitor)
((mode->HSyncEnd - mode->HDisplay) == 80) &&
((mode->HSyncEnd - mode->HSyncStart) == 32) &&
((mode->VSyncStart - mode->VDisplay) == 3)) {
- if (!monitor->reducedblanking)
+ if (!monitor->reducedblanking && !(mode->type & M_T_DRIVER))
return MODE_NO_REDUCED;
}
}