aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/backends/pulseaudio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/pulseaudio.cpp b/Alc/backends/pulseaudio.cpp
index 004425ce..bdcf3cb8 100644
--- a/Alc/backends/pulseaudio.cpp
+++ b/Alc/backends/pulseaudio.cpp
@@ -602,7 +602,7 @@ static void PulsePlayback_deviceCallback(pa_context *UNUSED(context), const pa_s
return;
PlaybackDevices.emplace_back();
- DevMap &newentry{PlaybackDevices.back()};
+ DevMap &newentry = PlaybackDevices.back();
int count{0};
while(1)
@@ -1317,7 +1317,7 @@ static void PulseCapture_deviceCallback(pa_context *UNUSED(context), const pa_so
return;
CaptureDevices.emplace_back();
- DevMap &newentry{CaptureDevices.back()};
+ DevMap &newentry = CaptureDevices.back();
int count{0};
while(1)