* Effectively disabled the force_ws option: wide screen resolutions are pretty common

these days, so having a not so crowded resolution menu is not really a good argument
  for making the driver unusable for the majority of potential users.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24241 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-03-05 14:43:46 +00:00
parent 603b62fe60
commit 094a5fb22f

View File

@ -217,15 +217,19 @@ PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const displa
} }
break; break;
default: default:
#if 0
/* at least one analog monitor is connected, or nothing detected at all */ /* at least one analog monitor is connected, or nothing detected at all */
/* (if forcing widescreen type was requested don't block mode) */ /* (if forcing widescreen type was requested don't block mode) */
if (target_aspect > 1.34 && !si->settings.force_ws) { if (target_aspect > 1.34 && !si->settings.force_ws) {
LOG(4, ("PROPOSEMODE: not all output devices can display widescreen modes, aborted.\n")); LOG(4, ("PROPOSEMODE: not all output devices can display widescreen modes, aborted.\n"));
return B_ERROR; return B_ERROR;
} }
#endif
break; break;
} }
// Wide screen modes are pretty common these days... - better use EDID!
#if 0
/* only export widescreen panel-TV modes when an exact resolution match exists, /* only export widescreen panel-TV modes when an exact resolution match exists,
* to prevent the modelist from becoming too crowded */ * to prevent the modelist from becoming too crowded */
if (target_aspect > 1.61 && !si->settings.force_ws) { if (target_aspect > 1.61 && !si->settings.force_ws) {
@ -246,6 +250,7 @@ PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const displa
return B_ERROR; return B_ERROR;
} }
} }
#endif
} }
/* check if panel(s) can display the requested resolution (if connected) */ /* check if panel(s) can display the requested resolution (if connected) */