Skip to content

Commit

Permalink
Do not use SDL for audio. Close #542
Browse files Browse the repository at this point in the history
The QEMU manpage states: "This backend is available on most systems, but you should use your platform’s native backend if possible."
  • Loading branch information
flexiondotorg committed Sep 20, 2022
1 parent e6b9954 commit e97b573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit e97b573

Please sign in to comment.