mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Unable to start a linux VM.
``` qemu-system-x86_64: -device virtio-vga,xres=,yres=: Parameter 'xres' expects uint64 ``` This fixes a typo in the name of the variable used to determine a sane resolution for linux guests.
This commit is contained in:
parent
53e971f5f8
commit
448e8885e7
1 changed files with 1 additions and 1 deletions
2
quickemu
2
quickemu
|
@ -489,7 +489,7 @@ function vm_boot() {
|
|||
fi
|
||||
|
||||
# Determine a sane resolution for Linux guests.
|
||||
if [ "${guest}" == "linux" ]; then
|
||||
if [ "${guest_os}" == "linux" ]; then
|
||||
local X_RES=1152
|
||||
local Y_RES=648
|
||||
if [ "${XDG_SESSION_TYPE}" == "x11" ]; then
|
||||
|
|
Loading…
Reference in a new issue