diff options
| author | 2018-09-17 12:26:29 -0400 | |
|---|---|---|
| committer | 2018-09-17 12:26:29 -0400 | |
| commit | 59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf (patch) | |
| tree | 7023d6ed2838109d7da11859ff65c7215cd30b1d | |
| parent | Merge pull request #1315 from lioncash/size (diff) | |
| parent | cubeb_sink: Get rid of variable shadowing within CubebSink's constructor (diff) | |
| download | yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.tar.gz yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.tar.xz yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.zip | |
Merge pull request #1321 from lioncash/audio-shadow
cubeb_sink: Get rid of variable shadowing within CubebSink's constructor
| -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 998a9d159..392039688 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 | } |