diff options
author | Francois Pons <fpons@mandriva.com> | 2000-09-01 13:22:24 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-09-01 13:22:24 +0000 |
commit | 57c044f8c323f2d44fc55e77dd70afece7cc8bc8 (patch) | |
tree | b77d34b429a7dab2005b478667bc7f2244f1fb2c /perl-install/Xconfigurator.pm | |
parent | d2118727c8d024d96621cb1eb418958d870495fb (diff) | |
download | drakx-57c044f8c323f2d44fc55e77dd70afece7cc8bc8.tar drakx-57c044f8c323f2d44fc55e77dd70afece7cc8bc8.tar.gz drakx-57c044f8c323f2d44fc55e77dd70afece7cc8bc8.tar.bz2 drakx-57c044f8c323f2d44fc55e77dd70afece7cc8bc8.tar.xz drakx-57c044f8c323f2d44fc55e77dd70afece7cc8bc8.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index ebabc5830..975fb0cf3 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -253,7 +253,7 @@ Do You want to use XFree 3.3 instead of XFree 4.0?"), 1) and $card->{use_xf4} = if (!$::isStandalone && $card->{driver} eq "i810") { require modules; - modules::load("agpgart"); }; + eval { modules::load("agpgart"); }; } $card; } @@ -474,7 +474,7 @@ sub autoDefaultDepth($$) { my ($card, $wres_wanted) = @_; my ($best, $depth); - return 24 if $card->{identifier} =~ /SiS/; #- assume 24 bit event for 3D acceleration (not enabled currently). + return 24 if $card->{identifier} =~ /SiS/; #- assume 24 bit even for 3D acceleration (not enabled currently). return 16 if $card->{Utah_glx} || $card->{DRI_glx}; #- assume 16bit as most of them need 16. for ($card->{server}) { |