summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorGravatar german772022-06-25 23:15:31 -0500
committerGravatar german772022-06-26 20:21:45 -0500
commit7b48e7b363245fd88685f70c0ea39b4374688e3c (patch)
tree4ce180cfc395947bf2b09f039e39beea171e22ad /src/core/hle/kernel/svc.cpp
parentcore: Replace all instances of ResultCode with Result (diff)
downloadyuzu-7b48e7b363245fd88685f70c0ea39b4374688e3c.tar.gz
yuzu-7b48e7b363245fd88685f70c0ea39b4374688e3c.tar.xz
yuzu-7b48e7b363245fd88685f70c0ea39b4374688e3c.zip
core: kernel: Replace instances of KPageLinkedList with KPageGroup
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index de8a0864c..e809c820f 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1365,7 +1365,7 @@ static Result MapProcessMemory(Core::System& system, VAddr dst_address, Handle p
1365 ResultInvalidMemoryRegion); 1365 ResultInvalidMemoryRegion);
1366 1366
1367 // Create a new page group. 1367 // Create a new page group.
1368 KPageLinkedList pg; 1368 KPageGroup pg;
1369 R_TRY(src_pt.MakeAndOpenPageGroup( 1369 R_TRY(src_pt.MakeAndOpenPageGroup(
1370 std::addressof(pg), src_address, size / PageSize, KMemoryState::FlagCanMapProcess, 1370 std::addressof(pg), src_address, size / PageSize, KMemoryState::FlagCanMapProcess,
1371 KMemoryState::FlagCanMapProcess, KMemoryPermission::None, KMemoryPermission::None, 1371 KMemoryState::FlagCanMapProcess, KMemoryPermission::None, KMemoryPermission::None,