diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-09-15 10:36:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-15 10:36:18 -0400 |
| commit | b06ef5d530abdccb56d57d5156c48b68544d8ce8 (patch) | |
| tree | 3184832c48f3f158e19d6ec4339dd92b44e1f842 /src/audio_core/renderer/memory | |
| parent | 0a63d43ad67ce974f4ee5b883348f686d27ca6a4 (diff) | |
| parent | 2c91fbf7f1384b5cb01e20e4f59e27a1f9bd9a61 (diff) | |
Merge pull request #8901 from lioncash/docs
audio_core: Amend documentation comment tags
Diffstat (limited to 'src/audio_core/renderer/memory')
| -rw-r--r-- | src/audio_core/renderer/memory/address_info.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/audio_core/renderer/memory/address_info.h b/src/audio_core/renderer/memory/address_info.h index 4cfefea8e..bb5c930e1 100644 --- a/src/audio_core/renderer/memory/address_info.h +++ b/src/audio_core/renderer/memory/address_info.h @@ -19,8 +19,8 @@ public: /** * Setup a new AddressInfo. * - * @param cpu_address - The CPU address of this region. - * @param size - The size of this region. + * @param cpu_address_ - The CPU address of this region. + * @param size_ - The size of this region. */ void Setup(CpuAddr cpu_address_, u64 size_) { cpu_address = cpu_address_; @@ -42,7 +42,6 @@ public: * Assign this region to a memory pool. * * @param memory_pool_ - Memory pool to assign. - * @return The CpuAddr address of this region. */ void SetPool(MemoryPoolInfo* memory_pool_) { memory_pool = memory_pool_; |
