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
This commit is contained in:
Wolfgang Bumiller 2017-06-28 10:48:03 +02:00 committed by Dietmar Maurer
parent 223e032b74
commit 85909c04c4

View File

@ -2925,7 +2925,7 @@ sub config_to_command {
$vga = 'qxl' if $qxlnum; $vga = 'qxl' if $qxlnum;
if (!$vga) { if (!$vga) {
$vga = $winversion >= 6 ? 'std' : 'cirrus'; $vga = (!$winversion || $winversion >= 6) ? 'std' : 'cirrus';
} }
# enable absolute mouse coordinates (needed by vnc) # enable absolute mouse coordinates (needed by vnc)