]> git.proxmox.com Git - qemu.git/commitdiff
Graphics: Switch to 800x600x32 as default mode
authorAlexander Graf <agraf@suse.de>
Thu, 20 Jun 2013 12:06:27 +0000 (14:06 +0200)
committerAlexander Graf <agraf@suse.de>
Sun, 30 Jun 2013 23:11:16 +0000 (01:11 +0200)
We have stayed at 800x600x15 as default graphics mode for the last 9 years.
If there ever was a reason to be there, surely nobody remembers it.

However, recently non-Linux PPC guests started to show bad effects on 15 bit
color mode. They do work just fine with 32 bits however.

So let's switch to 32 bit color as the default graphic mode.

Reported-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch_init.c

index 4255db98f7f117092a5bcfc50b74635ae0e27a0c..0e553c92854b10b48e8b5d3bf155f924339f62f6 100644 (file)
@@ -65,7 +65,7 @@ int graphic_depth = 8;
 #else
 int graphic_width = 800;
 int graphic_height = 600;
-int graphic_depth = 15;
+int graphic_depth = 32;
 #endif