diff options
| author | 2019-07-13 01:49:32 +1000 | |
|---|---|---|
| committer | 2019-07-13 01:49:32 +1000 | |
| commit | ea5602b959ebb8b73d5ba1540854fb1165781bf1 (patch) | |
| tree | 960cbd9ce9829a6ec8441ad655193dbff5a69d76 /src/audio_core/audio_renderer.cpp | |
| parent | Addressed issues (diff) | |
| download | yuzu-ea5602b959ebb8b73d5ba1540854fb1165781bf1.tar.gz yuzu-ea5602b959ebb8b73d5ba1540854fb1165781bf1.tar.xz yuzu-ea5602b959ebb8b73d5ba1540854fb1165781bf1.zip | |
Clang format
Diffstat (limited to 'src/audio_core/audio_renderer.cpp')
| -rw-r--r-- | src/audio_core/audio_renderer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audio_core/audio_renderer.cpp b/src/audio_core/audio_renderer.cpp index 415b06171..da50a0bbc 100644 --- a/src/audio_core/audio_renderer.cpp +++ b/src/audio_core/audio_renderer.cpp | |||
| @@ -80,7 +80,8 @@ AudioRenderer::AudioRenderer(Core::Timing::CoreTiming& core_timing, AudioRendere | |||
| 80 | 80 | ||
| 81 | audio_out = std::make_unique<AudioCore::AudioOut>(); | 81 | audio_out = std::make_unique<AudioCore::AudioOut>(); |
| 82 | stream = audio_out->OpenStream(core_timing, STREAM_SAMPLE_RATE, STREAM_NUM_CHANNELS, | 82 | stream = audio_out->OpenStream(core_timing, STREAM_SAMPLE_RATE, STREAM_NUM_CHANNELS, |
| 83 | fmt::format("AudioRenderer-Instance{}", instance_number), [=]() { buffer_event->Signal(); }); | 83 | fmt::format("AudioRenderer-Instance{}", instance_number), |
| 84 | [=]() { buffer_event->Signal(); }); | ||
| 84 | audio_out->StartStream(stream); | 85 | audio_out->StartStream(stream); |
| 85 | 86 | ||
| 86 | QueueMixedBuffer(0); | 87 | QueueMixedBuffer(0); |