summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--lib/Xconfig/resolution_and_depth.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index bf92ef5..b30be2d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- XFdrake:
+ o use 24bpp on savage (#38750)
- keyboarddrake:
o default romanian keyboard is qwerty (cf #38450)
o "ro" really is "ro(std_cedilla)"
diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm
index c50f2ea..d35deca 100644
--- a/lib/Xconfig/resolution_and_depth.pm
+++ b/lib/Xconfig/resolution_and_depth.pm
@@ -82,7 +82,7 @@ sub allowed {
@resolution_and_depth = grep { $_->{Depth} == 16 } @bios_vga_modes;
} else {
my @depths;
- if ($card->{Driver} eq 'fglrx') {
+ if ($card->{Driver} eq 'fglrx' || $card->{Driver} eq 'savage') {
@depths = 24;
} elsif ($card->{BoardName} eq 'NVIDIA RIVA 128') {
@depths = qw(8 15 24);