Skip to content

Commit 36d1c7f

Browse files
committed
fix(macos): prevent default sound card overriding the compatible selection
Signed-off-by: Martin Wimpress <martin@wimpress.org>
1 parent a98a416 commit 36d1c7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickemu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ function configure_os_quirks() {
11031103
NET_DEVICE="virtio-net-pci"
11041104
USB_HOST_PASSTHROUGH_CONTROLLER="nec-usb-xhci"
11051105
GUEST_TWEAKS+=" -global nec-usb-xhci.msi=off"
1106-
sound_card="${sound_card:-virtio-sound-pci}"
1106+
sound_card="virtio-sound-pci"
11071107
usb_controller="xhci";;
11081108
big-sur)
11091109
# Big Sur uses VirtIO but usb-audio/VoodooHDA don't work reliably
@@ -1113,7 +1113,7 @@ function configure_os_quirks() {
11131113
NET_DEVICE="virtio-net-pci"
11141114
USB_HOST_PASSTHROUGH_CONTROLLER="nec-usb-xhci"
11151115
GUEST_TWEAKS+=" -global nec-usb-xhci.msi=off"
1116-
sound_card="${sound_card:-ich9-intel-hda}"
1116+
sound_card="ich9-intel-hda"
11171117
usb_controller="xhci";;
11181118
*)
11191119
# Backwards compatibility if no macos_release is specified.

0 commit comments

Comments
 (0)