summaryrefslogtreecommitdiff
path: root/arch_init.c
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2013-06-20 14:06:27 +0200
committerAlexander Graf <agraf@suse.de>2013-07-01 01:11:16 +0200
commitf1ff0e89c8287de79c804ec7a50d43f39a9f65dc (patch)
tree680f19b1e9075f3f58732163f26114ea5d3eb3a6 /arch_init.c
parentf9de2da728d885c5c246d6ba94edea067ad00434 (diff)
downloadqemu-f1ff0e89c8287de79c804ec7a50d43f39a9f65dc.tar.gz
Graphics: Switch to 800x600x32 as default mode
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>
Diffstat (limited to 'arch_init.c')
-rw-r--r--arch_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch_init.c b/arch_init.c
index 4255db98f7..0e553c9285 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -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