summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-01-15 07:55:12 +0100
committerbunnei <bunneidev@gmail.com>2022-01-22 10:33:26 +0100
commitb8b1b58f36147a215b81b1e8ab15daa8e7ef25e2 (patch)
tree89f9f358e83847149b1f7a25db9978b6a19bd432 /src/core/hle/kernel/svc.cpp
parentMerge pull request #7735 from german77/udp_battery (diff)
downloadyuzu-b8b1b58f36147a215b81b1e8ab15daa8e7ef25e2.tar
yuzu-b8b1b58f36147a215b81b1e8ab15daa8e7ef25e2.tar.gz
yuzu-b8b1b58f36147a215b81b1e8ab15daa8e7ef25e2.tar.bz2
yuzu-b8b1b58f36147a215b81b1e8ab15daa8e7ef25e2.tar.lz
yuzu-b8b1b58f36147a215b81b1e8ab15daa8e7ef25e2.tar.xz
yuzu-b8b1b58f36147a215b81b1e8ab15daa8e7ef25e2.tar.zst
yuzu-b8b1b58f36147a215b81b1e8ab15daa8e7ef25e2.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index c7f5140f4..40bb893ac 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -230,7 +230,7 @@ static ResultCode MapMemory(Core::System& system, VAddr dst_addr, VAddr src_addr
return result;
}
- return page_table.Map(dst_addr, src_addr, size);
+ return page_table.MapMemory(dst_addr, src_addr, size);
}
static ResultCode MapMemory32(Core::System& system, u32 dst_addr, u32 src_addr, u32 size) {
@@ -249,7 +249,7 @@ static ResultCode UnmapMemory(Core::System& system, VAddr dst_addr, VAddr src_ad
return result;
}
- return page_table.Unmap(dst_addr, src_addr, size);
+ return page_table.UnmapMemory(dst_addr, src_addr, size);
}
static ResultCode UnmapMemory32(Core::System& system, u32 dst_addr, u32 src_addr, u32 size) {