Fix a mode sanity check to not break reduced-blanking setups (LCDs).

This commit is contained in:
Adam Jackson 2006-08-10 20:49:06 -04:00
parent e1921f014b
commit c4951e0a6b

View File

@ -1758,7 +1758,8 @@ xf86ValidateModes(ScrnInfoPtr scrp, DisplayModePtr availModes,
* horizontal timing parameters that CRTs may have
* problems with.
*/
if ((q->type & M_T_DEFAULT) &&
if (!scrp->monitor->reducedblanking &&
(q->type & M_T_DEFAULT) &&
((double)q->HTotal / (double)q->HDisplay) < 1.15)
continue;