diff options
| author | 2024-01-15 23:26:08 -0500 | |
|---|---|---|
| committer | 2024-01-15 23:26:08 -0500 | |
| commit | 2c29c2b8dd280d0aeff432569f324cd85d83b415 (patch) | |
| tree | e5552e7f82ccb37b611a3a577f94c91f9c813320 /src/audio_core/renderer/splitter | |
| parent | Merge pull request #12681 from t895/stick-toggles (diff) | |
| parent | Fix typos in master (diff) | |
| download | yuzu-2c29c2b8dd280d0aeff432569f324cd85d83b415.tar.gz yuzu-2c29c2b8dd280d0aeff432569f324cd85d83b415.tar.xz yuzu-2c29c2b8dd280d0aeff432569f324cd85d83b415.zip | |
Merge pull request #12686 from szepeviktor/typos3
Fix more typos
Diffstat (limited to 'src/audio_core/renderer/splitter')
| -rw-r--r-- | src/audio_core/renderer/splitter/splitter_context.cpp | 2 | ||||
| -rw-r--r-- | src/audio_core/renderer/splitter/splitter_context.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/renderer/splitter/splitter_context.cpp b/src/audio_core/renderer/splitter/splitter_context.cpp index 686150ea6..d0f3b60c2 100644 --- a/src/audio_core/renderer/splitter/splitter_context.cpp +++ b/src/audio_core/renderer/splitter/splitter_context.cpp | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | namespace AudioCore::Renderer { | 10 | namespace AudioCore::Renderer { |
| 11 | 11 | ||
| 12 | SplitterDestinationData* SplitterContext::GetDesintationData(const s32 splitter_id, | 12 | SplitterDestinationData* SplitterContext::GetDestinationData(const s32 splitter_id, |
| 13 | const s32 destination_id) { | 13 | const s32 destination_id) { |
| 14 | return splitter_infos[splitter_id].GetData(destination_id); | 14 | return splitter_infos[splitter_id].GetData(destination_id); |
| 15 | } | 15 | } |
diff --git a/src/audio_core/renderer/splitter/splitter_context.h b/src/audio_core/renderer/splitter/splitter_context.h index 556e6dcc3..1c0b84671 100644 --- a/src/audio_core/renderer/splitter/splitter_context.h +++ b/src/audio_core/renderer/splitter/splitter_context.h | |||
| @@ -42,7 +42,7 @@ public: | |||
| 42 | * @param destination_id - Destination index within the splitter. | 42 | * @param destination_id - Destination index within the splitter. |
| 43 | * @return Pointer to the found destination. May be nullptr. | 43 | * @return Pointer to the found destination. May be nullptr. |
| 44 | */ | 44 | */ |
| 45 | SplitterDestinationData* GetDesintationData(s32 splitter_id, s32 destination_id); | 45 | SplitterDestinationData* GetDestinationData(s32 splitter_id, s32 destination_id); |
| 46 | 46 | ||
| 47 | /** | 47 | /** |
| 48 | * Get a splitter from the given index. | 48 | * Get a splitter from the given index. |