diff options
| author | 2020-10-13 16:00:33 -0400 | |
|---|---|---|
| committer | 2020-10-13 16:36:58 -0400 | |
| commit | 9f9b64d280d50b39c92e8e12c6f45ef78a72b4ea (patch) | |
| tree | d1a143eb839744bc1515700c861ec7e5d04d130e /src/audio_core/voice_context.cpp | |
| parent | Merge pull request #4786 from lioncash/flags (diff) | |
| download | yuzu-9f9b64d280d50b39c92e8e12c6f45ef78a72b4ea.tar.gz yuzu-9f9b64d280d50b39c92e8e12c6f45ef78a72b4ea.tar.xz yuzu-9f9b64d280d50b39c92e8e12c6f45ef78a72b4ea.zip | |
audio_core/CMakeLists: Make warnings consistent with core
Normalizes the warnings shared between audio_core and core.
Diffstat (limited to 'src/audio_core/voice_context.cpp')
| -rw-r--r-- | src/audio_core/voice_context.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/audio_core/voice_context.cpp b/src/audio_core/voice_context.cpp index 863ac9267..c46ee55f1 100644 --- a/src/audio_core/voice_context.cpp +++ b/src/audio_core/voice_context.cpp | |||
| @@ -128,7 +128,10 @@ void ServerVoiceInfo::UpdateParameters(const VoiceInfo::InParams& voice_in, | |||
| 128 | in_params.wave_buffer_count = voice_in.wave_buffer_count; | 128 | in_params.wave_buffer_count = voice_in.wave_buffer_count; |
| 129 | in_params.wave_bufffer_head = voice_in.wave_buffer_head; | 129 | in_params.wave_bufffer_head = voice_in.wave_buffer_head; |
| 130 | if (behavior_info.IsFlushVoiceWaveBuffersSupported()) { | 130 | if (behavior_info.IsFlushVoiceWaveBuffersSupported()) { |
| 131 | in_params.wave_buffer_flush_request_count += voice_in.wave_buffer_flush_request_count; | 131 | const auto in_request_count = in_params.wave_buffer_flush_request_count; |
| 132 | const auto voice_request_count = voice_in.wave_buffer_flush_request_count; | ||
| 133 | in_params.wave_buffer_flush_request_count = | ||
| 134 | static_cast<u8>(in_request_count + voice_request_count); | ||
| 132 | } | 135 | } |
| 133 | in_params.mix_id = voice_in.mix_id; | 136 | in_params.mix_id = voice_in.mix_id; |
| 134 | if (behavior_info.IsSplitterSupported()) { | 137 | if (behavior_info.IsSplitterSupported()) { |