mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Fix VGA VRAM allocation
This commit is contained in:
parent
232bddeed6
commit
494d3ca22a
1 changed files with 1 additions and 1 deletions
2
quickemu
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…
Reference in a new issue