aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-09-03 10:53:08 -0700
committerChris Robinson <[email protected]>2023-09-03 10:53:08 -0700
commit73cad63efd4f34937a7b00a7df18f004eeb832a6 (patch)
tree56ec5570ed42d4a73b0fef48121a3f7abb4e3fc4
parent8aaf9f44787f89aa35827723acc81a110f1c2024 (diff)
Don't use a custom config for the pipewire event loop
-rw-r--r--alc/backends/pipewire.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/pipewire.cpp b/alc/backends/pipewire.cpp
index 6a39df72..1c4e2cc4 100644
--- a/alc/backends/pipewire.cpp
+++ b/alc/backends/pipewire.cpp
@@ -1146,7 +1146,7 @@ bool EventManager::init()
return false;
}
- mContext = mLoop.newContext(pw_properties_new(PW_KEY_CONFIG_NAME, "client-rt.conf", nullptr));
+ mContext = mLoop.newContext();
if(!mContext)
{
ERR("Failed to create PipeWire event context (errno: %d)\n", errno);