mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-12 10:10:39 +00:00
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:
parent
223e032b74
commit
85909c04c4
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user