diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-09-15 15:02:58 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-09-15 15:02:58 +0000 |
commit | fec9449e69b0705b7ef85d9617d36e56f66628a4 (patch) | |
tree | 3db12754a34efbef547afbc45675bd4ff4ef474e | |
parent | ca56c01452ed58112ec1811c0d27dd526f6260e7 (diff) | |
download | drakx-fec9449e69b0705b7ef85d9617d36e56f66628a4.tar drakx-fec9449e69b0705b7ef85d9617d36e56f66628a4.tar.gz drakx-fec9449e69b0705b7ef85d9617d36e56f66628a4.tar.bz2 drakx-fec9449e69b0705b7ef85d9617d36e56f66628a4.tar.xz drakx-fec9449e69b0705b7ef85d9617d36e56f66628a4.zip |
no_comment
-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 |