From f82dd1c422b6f3ca4a2f7bf5bd4e1023697a0b4c Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 26 Jan 2026 01:31:40 +0000 Subject: [PATCH] fix(macos): prevent default sound card overriding the compatible selection Signed-off-by: Martin Wimpress --- quickemu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickemu b/quickemu index 96097ca0fe..06bb782372 100755 --- a/quickemu +++ b/quickemu @@ -1103,7 +1103,7 @@ function configure_os_quirks() { NET_DEVICE="virtio-net-pci" USB_HOST_PASSTHROUGH_CONTROLLER="nec-usb-xhci" GUEST_TWEAKS+=" -global nec-usb-xhci.msi=off" - sound_card="${sound_card:-virtio-sound-pci}" + sound_card="virtio-sound-pci" usb_controller="xhci";; big-sur) # Big Sur uses VirtIO but usb-audio/VoodooHDA don't work reliably @@ -1113,7 +1113,7 @@ function configure_os_quirks() { NET_DEVICE="virtio-net-pci" USB_HOST_PASSTHROUGH_CONTROLLER="nec-usb-xhci" GUEST_TWEAKS+=" -global nec-usb-xhci.msi=off" - sound_card="${sound_card:-ich9-intel-hda}" + sound_card="ich9-intel-hda" usb_controller="xhci";; *) # Backwards compatibility if no macos_release is specified.