diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2023-02-27 10:16:10 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 10:16:10 +1000 |
commit | 4629fc549d9a5a9ed769fc83bd349222cdc2588c (patch) | |
tree | 6131f4955922e71cbd691507156630955ac843e0 | |
parent | 63f02bf0847976f3ee487fad4ead5be7bd4383ac (diff) | |
parent | 01485fa889fe04aa17bc02f5075c371551b45e82 (diff) |
Merge pull request #22644 from fritsch/piped
PlatformLinux: Prefer Pipewire over Pulse
-rw-r--r-- | xbmc/platform/linux/PlatformLinux.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/platform/linux/PlatformLinux.cpp b/xbmc/platform/linux/PlatformLinux.cpp index a7af09824d..7958da8787 100644 --- a/xbmc/platform/linux/PlatformLinux.cpp +++ b/xbmc/platform/linux/PlatformLinux.cpp @@ -114,9 +114,9 @@ bool CPlatformLinux::InitStageOne() } else { - if (!OPTIONALS::PulseAudioRegister()) + if (!OPTIONALS::PipewireRegister()) { - if (!OPTIONALS::PipewireRegister()) + if (!OPTIONALS::PulseAudioRegister()) { if (!OPTIONALS::ALSARegister()) { |