From 95ec59d46def14cea893ae26d5ae8d804e489e48 Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Thu, 12 May 2022 13:13:59 +0100 Subject: [PATCH] make PulseAudio the default --- servermain.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/servermain.cpp b/servermain.cpp index 734c5e9..9d93e14 100644 --- a/servermain.cpp +++ b/servermain.cpp @@ -550,7 +550,8 @@ void servermain::loadSettings() case rtAudio: { #if defined(Q_OS_LINUX) - RtAudio* audio = new RtAudio(RtAudio::Api::LINUX_ALSA); +// RtAudio* audio = new RtAudio(RtAudio::Api::LINUX_ALSA); + RtAudio* audio = new RtAudio(RtAudio::Api::LINUX_PULSE); #elif defined(Q_OS_WIN) RtAudio* audio = new RtAudio(RtAudio::Api::WINDOWS_WASAPI); #elif defined(Q_OS_MACX)