Fix case statement
The correct separator is "|" and not ",".
This commit is contained in:
parent
084b632eae
commit
566faa97d8
4
quickemu
4
quickemu
@ -701,8 +701,8 @@ function vm_boot() {
|
|||||||
# Allocate VRAM to VGA devices
|
# Allocate VRAM to VGA devices
|
||||||
case ${DISPLAY_DEVICE} in
|
case ${DISPLAY_DEVICE} in
|
||||||
bochs-display) VIDEO="${VIDEO},vgamem=67108864";;
|
bochs-display) VIDEO="${VIDEO},vgamem=67108864";;
|
||||||
qxl,qxl-vga) VIDEO="${VIDEO},ram_size=65536,vram_size=65536,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";;
|
ati-vga|cirrus-vga|VGA) VIDEO="${VIDEO},vgamem_mb=64";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Add fullscreen options
|
# Add fullscreen options
|
||||||
|
Loading…
Reference in New Issue
Block a user