diff options
| author | 2022-06-25 22:44:19 -0500 | |
|---|---|---|
| committer | 2022-06-26 20:21:37 -0500 | |
| commit | a7d9be13840acd65d0d684666390758ede72c826 (patch) | |
| tree | 37485f63b09576444173d6a765abe0bb95dd45db /src/audio_core/info_updater.cpp | |
| parent | Merge pull request #8475 from liamwhite/x18 (diff) | |
| download | yuzu-a7d9be13840acd65d0d684666390758ede72c826.tar.gz yuzu-a7d9be13840acd65d0d684666390758ede72c826.tar.xz yuzu-a7d9be13840acd65d0d684666390758ede72c826.zip | |
core: Replace all instances of ResultCode with Result
Diffstat (limited to 'src/audio_core/info_updater.cpp')
| -rw-r--r-- | src/audio_core/info_updater.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/audio_core/info_updater.cpp b/src/audio_core/info_updater.cpp index 313a2eb6d..0065e6e53 100644 --- a/src/audio_core/info_updater.cpp +++ b/src/audio_core/info_updater.cpp | |||
| @@ -285,9 +285,8 @@ bool InfoUpdater::UpdateSplitterInfo(SplitterContext& splitter_context) { | |||
| 285 | return true; | 285 | return true; |
| 286 | } | 286 | } |
| 287 | 287 | ||
| 288 | ResultCode InfoUpdater::UpdateMixes(MixContext& mix_context, std::size_t mix_buffer_count, | 288 | Result InfoUpdater::UpdateMixes(MixContext& mix_context, std::size_t mix_buffer_count, |
| 289 | SplitterContext& splitter_context, | 289 | SplitterContext& splitter_context, EffectContext& effect_context) { |
| 290 | EffectContext& effect_context) { | ||
| 291 | std::vector<MixInfo::InParams> mix_in_params; | 290 | std::vector<MixInfo::InParams> mix_in_params; |
| 292 | 291 | ||
| 293 | if (!behavior_info.IsMixInParameterDirtyOnlyUpdateSupported()) { | 292 | if (!behavior_info.IsMixInParameterDirtyOnlyUpdateSupported()) { |