From 62fb6690db438bba93d87667faedc3ae0df2a1e7 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 4 Oct 2021 22:25:29 +0100 Subject: [PATCH] Minor refactor of macOS DISPLAY_DEVICE --- quickemu | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/quickemu b/quickemu index 5958fc2..a0c27b0 100755 --- a/quickemu +++ b/quickemu @@ -435,11 +435,10 @@ function vm_boot() { # Tweak video device based on the guest macOS release. # Displays in System Preferences can be used to select a resolution if: # - qxl is used on Big Sur and Catalina - # - VGA is used on Mojave, although options are limited and they are all 4:3 + # - VGA is used on Mojave, although available resolutions are all 4:3 # - High Sierra will run at the default 1920x1080 only. case ${macos_release} in - catalina) DISPLAY_DEVICE="qxl";; - big-sur) DISPLAY_DEVICE="qxl";; + catalina|big-sur) DISPLAY_DEVICE="qxl";; *) DISPLAY_DEVICE="VGA";; esac elif [ "${guest_os}" == "windows" ]; then