From 85909c04c49879f5fffa366fc3233eee2b157e97 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 28 Jun 2017 10:48:03 +0200 Subject: [PATCH] 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 --- PVE/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2