summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2020-11-28 13:25:28 +0100
committerChloe Marcec <dmarcecguzman@gmail.com>2020-11-28 13:25:28 +0100
commitd7019d8307bf8db1d985e3a537bd83289cf1a3de (patch)
tree38f748e3b97b56ccd5196c41f661898f8999f137
parentMerge pull request #5015 from comex/xx-sign-compare (diff)
downloadyuzu-d7019d8307bf8db1d985e3a537bd83289cf1a3de.tar
yuzu-d7019d8307bf8db1d985e3a537bd83289cf1a3de.tar.gz
yuzu-d7019d8307bf8db1d985e3a537bd83289cf1a3de.tar.bz2
yuzu-d7019d8307bf8db1d985e3a537bd83289cf1a3de.tar.lz
yuzu-d7019d8307bf8db1d985e3a537bd83289cf1a3de.tar.xz
yuzu-d7019d8307bf8db1d985e3a537bd83289cf1a3de.tar.zst
yuzu-d7019d8307bf8db1d985e3a537bd83289cf1a3de.zip
-rw-r--r--src/audio_core/audio_renderer.cpp3
-rw-r--r--src/audio_core/audio_renderer.h1
2 files changed, 1 insertions, 3 deletions
diff --git a/src/audio_core/audio_renderer.cpp b/src/audio_core/audio_renderer.cpp
index e1ded84e0..5f532ed31 100644
--- a/src/audio_core/audio_renderer.cpp
+++ b/src/audio_core/audio_renderer.cpp
@@ -79,8 +79,7 @@ AudioRenderer::AudioRenderer(Core::Timing::CoreTiming& core_timing, Core::Memory
sink_context(params.sink_count), splitter_context(),
voices(params.voice_count), memory{memory_},
command_generator(worker_params, voice_context, mix_context, splitter_context, effect_context,
- memory),
- temp_mix_buffer(AudioCommon::TOTAL_TEMP_MIX_SIZE) {
+ memory) {
behavior_info.SetUserRevision(params.revision);
splitter_context.Initialize(behavior_info, params.splitter_count,
params.num_splitter_send_channels);
diff --git a/src/audio_core/audio_renderer.h b/src/audio_core/audio_renderer.h
index a85219045..54ac68b80 100644
--- a/src/audio_core/audio_renderer.h
+++ b/src/audio_core/audio_renderer.h
@@ -73,7 +73,6 @@ private:
Core::Memory::Memory& memory;
CommandGenerator command_generator;
std::size_t elapsed_frame_count{};
- std::vector<s32> temp_mix_buffer{};
};
} // namespace AudioCore