summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-01-12 06:57:01 +0100
committerbunnei <bunneidev@gmail.com>2022-01-15 06:16:33 +0100
commitb54cbc985e68363acfe54a34d267b279f6d3245a (patch)
tree9ba950e678a04d659704ef8e5395ee4279c58c08 /src/core/hle/kernel/kernel.cpp
parentMerge pull request #7707 from german77/slow-update (diff)
downloadyuzu-b54cbc985e68363acfe54a34d267b279f6d3245a.tar
yuzu-b54cbc985e68363acfe54a34d267b279f6d3245a.tar.gz
yuzu-b54cbc985e68363acfe54a34d267b279f6d3245a.tar.bz2
yuzu-b54cbc985e68363acfe54a34d267b279f6d3245a.tar.lz
yuzu-b54cbc985e68363acfe54a34d267b279f6d3245a.tar.xz
yuzu-b54cbc985e68363acfe54a34d267b279f6d3245a.tar.zst
yuzu-b54cbc985e68363acfe54a34d267b279f6d3245a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index e1e17db13..ccef17fb9 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -629,7 +629,7 @@ struct KernelCore::Impl {
const auto application_pool = memory_layout.GetKernelApplicationPoolRegionPhysicalExtents();
// Initialize memory managers
- memory_manager = std::make_unique<KMemoryManager>();
+ memory_manager = std::make_unique<KMemoryManager>(system);
memory_manager->InitializeManager(KMemoryManager::Pool::Application,
application_pool.GetAddress(),
application_pool.GetEndAddress());