diff options
| author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-22 15:19:48 +0000 |
|---|---|---|
| committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-22 15:19:48 +0000 |
| commit | 28b85ed8db996e06c7f371d6034b7cd3876f9012 (patch) | |
| tree | 4422cd5ab3e40018e7af89b51deea4a316690055 | |
| parent | 9306acb50991b7c78510ff4ffe19a190f2fc89c0 (diff) | |
| download | focaccia-qemu-28b85ed8db996e06c7f371d6034b7cd3876f9012.tar.gz focaccia-qemu-28b85ed8db996e06c7f371d6034b7cd3876f9012.zip | |
simplify vga selection (Gerd Hoffmann)
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7227 c046a42c-6fe2-441c-8c8c-71466251a162
| -rw-r--r-- | vl.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/vl.c b/vl.c index 13426653b5..b14f7b0123 100644 --- a/vl.c +++ b/vl.c @@ -4222,23 +4222,16 @@ static void select_vgahw (const char *p) { const char *opts; + cirrus_vga_enabled = 0; + std_vga_enabled = 0; + vmsvga_enabled = 0; if (strstart(p, "std", &opts)) { std_vga_enabled = 1; - cirrus_vga_enabled = 0; - vmsvga_enabled = 0; } else if (strstart(p, "cirrus", &opts)) { cirrus_vga_enabled = 1; - std_vga_enabled = 0; - vmsvga_enabled = 0; } else if (strstart(p, "vmware", &opts)) { - cirrus_vga_enabled = 0; - std_vga_enabled = 0; vmsvga_enabled = 1; - } else if (strstart(p, "none", &opts)) { - cirrus_vga_enabled = 0; - std_vga_enabled = 0; - vmsvga_enabled = 0; - } else { + } else if (!strstart(p, "none", &opts)) { invalid_vga: fprintf(stderr, "Unknown vga type: %s\n", p); exit(1); |