diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-23 19:39:00 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-23 19:39:27 +0200 |
commit | b14d344dfcd4398c5eb18a2eed4656f217444498 (patch) | |
tree | a0d8f1c4598db9446f23fbc9031e0022fa7a3a66 /src/core/memory.cpp | |
parent | Merge pull request #4698 from lioncash/optional-null (diff) | |
download | yuzu-b14d344dfcd4398c5eb18a2eed4656f217444498.tar yuzu-b14d344dfcd4398c5eb18a2eed4656f217444498.tar.gz yuzu-b14d344dfcd4398c5eb18a2eed4656f217444498.tar.bz2 yuzu-b14d344dfcd4398c5eb18a2eed4656f217444498.tar.lz yuzu-b14d344dfcd4398c5eb18a2eed4656f217444498.tar.xz yuzu-b14d344dfcd4398c5eb18a2eed4656f217444498.tar.zst yuzu-b14d344dfcd4398c5eb18a2eed4656f217444498.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/memory.cpp | 2 |
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, |