From 44174a44bd14ce9847801d91816ea51e20dba779 Mon Sep 17 00:00:00 2001 From: Sahan Fernando Date: Sat, 26 Jun 2021 11:30:35 +1000 Subject: [PATCH] Meta: Use virtio-vga instead of virtio-gpu if using multiple monitors --- Meta/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/run.sh b/Meta/run.sh index 80755cff80..97cf6a7167 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -56,7 +56,7 @@ installed_major_version=$("$SERENITY_QEMU_BIN" -version | head -n 1 | sed -E 's/ SERENITY_SCREENS="${SERENITY_SCREENS:-1}" SERENITY_QEMU_DISPLAY_BACKEND="${SERENITY_QEMU_DISPLAY_BACKEND:-sdl,gl=on}" if [ "$SERENITY_SCREENS" -gt 1 ]; then - SERENITY_QEMU_DISPLAY_DEVICE="virtio-gpu,max_outputs=$SERENITY_SCREENS " + SERENITY_QEMU_DISPLAY_DEVICE="virtio-vga,max_outputs=$SERENITY_SCREENS " # QEMU appears to always relay absolute mouse coordinates relative to the screen that the mouse is # pointed to, without any way for us to know what screen it was. So, when dealing with multiple # displays force using relative coordinates only