summaryrefslogtreecommitdiff
path: root/src/audio_core
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2022-10-16 03:15:54 -0400
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2022-10-16 03:15:54 -0400
commit9fe077635e00aba362034a694c5d1a701abc288a (patch)
treea6f828773944376034328a58bbcd4efb392f36bd /src/audio_core
parent5c7eef3756ed2814fdc8e5e42a2ebed489c37405 (diff)
sdl2_sink: Distinguish between capture and non-capture device names
The function prototype appears to care whether we are loading capture devices or not, and SDL_GetAudioDeviceName has a parameter to use it, but for some reason it isn't. This puts `capture` where it goes.
Diffstat (limited to 'src/audio_core')
-rw-r--r--src/audio_core/sink/sdl2_sink.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/sink/sdl2_sink.cpp b/src/audio_core/sink/sdl2_sink.cpp
index dee47cf0e..cc13c6254 100644
--- a/src/audio_core/sink/sdl2_sink.cpp
+++ b/src/audio_core/sink/sdl2_sink.cpp
@@ -230,7 +230,7 @@ std::vector<std::string> ListSDLSinkDevices(bool capture) {
const int device_count = SDL_GetNumAudioDevices(capture);
for (int i = 0; i < device_count; ++i) {
- const char* name = SDL_GetAudioDeviceName(i, 0);
+ const char* name = SDL_GetAudioDeviceName(i, capture);
if (name != nullptr) {
device_list.emplace_back(name);
}