From e97b57352c5bca641337db691d91a925b191120d Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 20 Sep 2022 13:53:59 +0100 Subject: [PATCH] Do not use SDL for audio. Close #542 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The QEMU manpage states: "This backend is available on most systems, but you should use your platform’s native backend if possible." --- quickemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickemu b/quickemu index 949130d..380fa1b 100755 --- a/quickemu +++ b/quickemu @@ -664,9 +664,9 @@ function vm_boot() { fi # Setup the appropriate audio device based on the display output + # https://www.kraxel.org/blog/2020/01/qemu-sound-audiodev/ case ${OUTPUT} in none|spice|spice-app) AUDIO_DEV="spice,id=audio0";; - sdl) AUDIO_DEV="sdl,id=audio0";; *) AUDIO_DEV="pa,id=audio0";; esac