mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Do not use SDL for audio. Close #542
The QEMU manpage states: "This backend is available on most systems, but you should use your platform’s native backend if possible."
This commit is contained in:
parent
e6b9954050
commit
e97b57352c
1 changed files with 1 additions and 1 deletions
2
quickemu
2
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue