diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-17 18:26:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 18:26:29 +0200 |
commit | 59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf (patch) | |
tree | 7023d6ed2838109d7da11859ff65c7215cd30b1d /src/audio_core/cubeb_sink.cpp | |
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 yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.tar.gz yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.tar.bz2 yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.tar.lz yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.tar.xz yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.tar.zst yuzu-59beb540ae5e0cf020d1cda5890ba2c2e3afa2bf.zip |
Diffstat (limited to 'src/audio_core/cubeb_sink.cpp')
-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) { LOG_WARNING(Audio_Sink, "Audio output device enumeration not supported"); } else { const auto collection_end{collection.device + collection.count}; - const auto device{std::find_if(collection.device, collection_end, - [&](const cubeb_device_info& device) { - return target_device_name == device.friendly_name; - })}; + const auto device{ + std::find_if(collection.device, collection_end, [&](const cubeb_device_info& info) { + return target_device_name == info.friendly_name; + })}; if (device != collection_end) { output_device = device->devid; } |