Fix VGA VRAM allocation

pull/61/head
Martin Wimpress 3 years ago
parent 232bddeed6
commit 494d3ca22a
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3
  1. 2
      quickemu

@ -384,7 +384,7 @@ function vm_boot() {
fi
# Allocate VRAM to VGA devices
if [[ "${DISPLAY_DEVICE}" == *"vga"* ]] || [[ "${DISPLAY_DEVICE}" == *"VGA"* ]]; then
if [ "${DISPLAY_DEVICE}" == "qxl-vga" ] || [ "${DISPLAY_DEVICE}" == "VGA" ]; then
VIDEO="${VIDEO},vgamem_mb=128"
fi
VIDEO="${VIDEO} ${FULLSCREEN}"

Loading…
Cancel
Save