diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-24 13:45:45 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-09-05 01:58:55 +0200 |
commit | f763e230830019f4a430da7558ee4cbbb0684534 (patch) | |
tree | a325e307d8c91b229cb2ca38d83d9139fd11a1d7 /src | |
parent | kernel/vm_manager: Move variables closer to usage spots in MapPhysicalMemory/UnmapPhysicalMemory (diff) | |
download | yuzu-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')
-rw-r--r-- | src/core/hle/kernel/vm_manager.h | 8 |
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. /// |