Skip to content

Commit

Permalink
Fix case statement
Browse files Browse the repository at this point in the history
The correct separator is "|" and not ",".
  • Loading branch information
lbschenkel authored and flexiondotorg committed Nov 15, 2021
1 parent 084b632 commit 566faa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickemu
Expand Up @@ -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
Expand Down

0 comments on commit 566faa9

Please sign in to comment.