Fix standard VGA fallback

This commit is contained in:
Martin Wimpress 2020-03-21 17:20:13 +00:00
parent c2a2c08396
commit 9808adecea
No known key found for this signature in database
GPG key ID: 61DF940515E06DA3

View file

@ -238,7 +238,7 @@ function vm_boot() {
elif [ "${DISPLAY_DEVICE}" == "virtio-vga" ]; then
VIDEO="-device ${DISPLAY_DEVICE},virgl=${VIRGL},xres=${X_RES},yres=${Y_RES}"
else
VIDEO=" -device VGA,vgamem_mb=32xres=${X_RES},yres=${Y_RES}"
VIDEO=" -device VGA,vgamem_mb=32,xres=${X_RES},yres=${Y_RES}"
fi
echo " - Video: ${DISPLAY_DEVICE}"