summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-24 13:45:45 +0200
committerLioncash <mathew1800@gmail.com>2019-09-05 01:58:55 +0200
commitf763e230830019f4a430da7558ee4cbbb0684534 (patch)
treea325e307d8c91b229cb2ca38d83d9139fd11a1d7 /src/core
parentkernel/vm_manager: Move variables closer to usage spots in MapPhysicalMemory/UnmapPhysicalMemory (diff)
downloadyuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar
yuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar.gz
yuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar.bz2
yuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar.lz
yuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar.xz
yuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar.zst
yuzu-f763e230830019f4a430da7558ee4cbbb0684534.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/vm_manager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/vm_manager.h b/src/core/hle/kernel/vm_manager.h
index b18cde619..850a7ebc3 100644
--- a/src/core/hle/kernel/vm_manager.h
+++ b/src/core/hle/kernel/vm_manager.h
@@ -454,8 +454,8 @@ public:
/// Maps memory at a given address.
///
- /// @param addr The virtual address to map memory at.
- /// @param size The amount of memory to map.
+ /// @param target The virtual address to map memory at.
+ /// @param size The amount of memory to map.
///
/// @note The destination address must lie within the Map region.
///
@@ -468,8 +468,8 @@ public:
/// Unmaps memory at a given address.
///
- /// @param addr The virtual address to unmap memory at.
- /// @param size The amount of memory to unmap.
+ /// @param target The virtual address to unmap memory at.
+ /// @param size The amount of memory to unmap.
///
/// @note The destination address must lie within the Map region.
///