diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfigurator.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 4fedaa22c..9eec42f88 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -396,7 +396,10 @@ sub resolutionsConfiguration($$) { my $noauto = $option eq 'noauto'; #- For the mono and vga16 server, no further configuration is required. - return if member($card->{server}, "Mono", "VGA16"); + if (member($card->{server}, "Mono", "VGA16")) { + $card->{depth}{8} = [[ 640, 480 ]]; + return; + } #- some of these guys hate to be poked #- if we dont know then its at the user's discretion |