mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Fix case statement
The correct separator is "|" and not ",".
This commit is contained in:
parent
084b632eae
commit
566faa97d8
1 changed files with 2 additions and 2 deletions
4
quickemu
4
quickemu
|
@ -701,8 +701,8 @@ function vm_boot() {
|
|||
# Allocate VRAM to VGA devices
|
||||
case ${DISPLAY_DEVICE} in
|
||||
bochs-display) VIDEO="${VIDEO},vgamem=67108864";;
|
||||
qxl,qxl-vga) VIDEO="${VIDEO},ram_size=65536,vram_size=65536,vgamem_mb=64";;
|
||||
ati-vga,cirrus-vga,VGA) VIDEO="${VIDEO},vgamem_mb=64";;
|
||||
qxl|qxl-vga) VIDEO="${VIDEO},ram_size=65536,vram_size=65536,vgamem_mb=64";;
|
||||
ati-vga|cirrus-vga|VGA) VIDEO="${VIDEO},vgamem_mb=64";;
|
||||
esac
|
||||
|
||||
# Add fullscreen options
|
||||
|
|
Loading…
Reference in a new issue