summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-09-23 21:07:47 +0200
committerGitHub <noreply@github.com>2020-09-23 21:07:47 +0200
commit8b0f334e0c6e2733be52df95cbca2d93cd472394 (patch)
treed75741db85904d64c913fe8107bd5541ad7d3d2c
parentMerge pull request #4701 from lioncash/unused-proto (diff)
parentmemory: Resolve a -Wdocumentation warning (diff)
downloadyuzu-8b0f334e0c6e2733be52df95cbca2d93cd472394.tar
yuzu-8b0f334e0c6e2733be52df95cbca2d93cd472394.tar.gz
yuzu-8b0f334e0c6e2733be52df95cbca2d93cd472394.tar.bz2
yuzu-8b0f334e0c6e2733be52df95cbca2d93cd472394.tar.lz
yuzu-8b0f334e0c6e2733be52df95cbca2d93cd472394.tar.xz
yuzu-8b0f334e0c6e2733be52df95cbca2d93cd472394.tar.zst
yuzu-8b0f334e0c6e2733be52df95cbca2d93cd472394.zip
Diffstat (limited to '')
-rw-r--r--src/core/memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index 86d17c6cb..c3f4829d7 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -567,7 +567,7 @@ struct Memory::Impl {
* @param page_table The page table to use to perform the mapping.
* @param base The base address to begin mapping at.
* @param size The total size of the range in bytes.
- * @param memory The memory to map.
+ * @param target The target address to begin mapping from.
* @param type The page type to map the memory as.
*/
void MapPages(Common::PageTable& page_table, VAddr base, u64 size, PAddr target,