summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-05-28 02:15:23 +0200
committerbunnei <bunneidev@gmail.com>2021-05-29 02:42:41 +0200
commitee099b26976dd7bfd1ac7907363f4f7608fe75c0 (patch)
tree17663da7860f35ae4ac2dad054cb59b75e0363e1 /src/core/hle/kernel/kernel.cpp
parentMerge pull request #6356 from ogniK5377/ApplyNpadSystemCommonPolicy (diff)
downloadyuzu-ee099b26976dd7bfd1ac7907363f4f7608fe75c0.tar
yuzu-ee099b26976dd7bfd1ac7907363f4f7608fe75c0.tar.gz
yuzu-ee099b26976dd7bfd1ac7907363f4f7608fe75c0.tar.bz2
yuzu-ee099b26976dd7bfd1ac7907363f4f7608fe75c0.tar.lz
yuzu-ee099b26976dd7bfd1ac7907363f4f7608fe75c0.tar.xz
yuzu-ee099b26976dd7bfd1ac7907363f4f7608fe75c0.tar.zst
yuzu-ee099b26976dd7bfd1ac7907363f4f7608fe75c0.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/kernel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 8b55df82e..b7a6c9abf 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -620,7 +620,8 @@ struct KernelCore::Impl {
void InitializePageSlab() {
// Allocate slab heaps
- user_slab_heap_pages = std::make_unique<KSlabHeap<Page>>();
+ user_slab_heap_pages =
+ std::make_unique<KSlabHeap<Page>>(KSlabHeap<Page>::AllocationType::Guest);
// TODO(ameerj): This should be derived, not hardcoded within the kernel
constexpr u64 user_slab_heap_size{0x3de000};