From: Wolfgang Bumiller Date: Wed, 28 Jun 2017 08:48:03 +0000 (+0200) Subject: don't use cirrus by default for sane OS' X-Git-Url: https://git.proxmox.com/?p=qemu-server.git;a=commitdiff_plain;h=85909c04c49879f5fffa366fc3233eee2b157e97 don't use cirrus by default for sane OS' (It can stay for $winversion < 6 because then you probably don't have drivers for anything else.) this is long overdue --- diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 1a4860e..79a65ee 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -2925,7 +2925,7 @@ sub config_to_command { $vga = 'qxl' if $qxlnum; if (!$vga) { - $vga = $winversion >= 6 ? 'std' : 'cirrus'; + $vga = (!$winversion || $winversion >= 6) ? 'std' : 'cirrus'; } # enable absolute mouse coordinates (needed by vnc)