diff options
| author | 2018-09-14 12:20:48 -0400 | |
|---|---|---|
| committer | 2018-09-14 12:20:51 -0400 | |
| commit | fc669a97d4a5d901c1a70a7c7de79a58efd8db35 (patch) | |
| tree | 23b7de92e4fcbd4085a8c6dbccccd01748beeba7 /src | |
| parent | Merge pull request #1308 from valentinvanelslande/ipc (diff) | |
| download | yuzu-fc669a97d4a5d901c1a70a7c7de79a58efd8db35.tar.gz yuzu-fc669a97d4a5d901c1a70a7c7de79a58efd8db35.tar.xz yuzu-fc669a97d4a5d901c1a70a7c7de79a58efd8db35.zip | |
cubeb_sink: Get rid of variable shadowing within CubebSink's constructor
The parameter of the lambda was shadowing the variable that was being
assigned to.
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio_core/cubeb_sink.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio_core/cubeb_sink.cpp b/src/audio_core/cubeb_sink.cpp index 79155a7a0..0a808b585 100644 --- a/src/audio_core/cubeb_sink.cpp +++ b/src/audio_core/cubeb_sink.cpp | |||
| @@ -119,10 +119,10 @@ CubebSink::CubebSink(std::string target_device_name) { | |||
| 119 | LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported"); | 119 | LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported"); |
| 120 | } else { | 120 | } else { |
| 121 | const auto collection_end{collection.device + collection.count}; | 121 | const auto collection_end{collection.device + collection.count}; |
| 122 | const auto device{std::find_if(collection.device, collection_end, | 122 | const auto device{ |
| 123 | [&](const cubeb_device_info& device) { | 123 | std::find_if(collection.device, collection_end, [&](const cubeb_device_info& info) { |
| 124 | return target_device_name == device.friendly_name; | 124 | return target_device_name == info.friendly_name; |
| 125 | })}; | 125 | })}; |
| 126 | if (device != collection_end) { | 126 | if (device != collection_end) { |
| 127 | output_device = device->devid; | 127 | output_device = device->devid; |
| 128 | } | 128 | } |