summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/memory/memory_manager.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-12 03:48:02 +0100
committerbunnei <bunneidev@gmail.com>2021-02-19 01:16:24 +0100
commit6a19086001b5d7229728199d074b72c1d0dd34af (patch)
tree73091c9902c03d909ae9ba2e9667332811e40c96 /src/core/hle/kernel/memory/memory_manager.h
parenthle: kernel: Add KPageBitmap class. (diff)
downloadyuzu-6a19086001b5d7229728199d074b72c1d0dd34af.tar
yuzu-6a19086001b5d7229728199d074b72c1d0dd34af.tar.gz
yuzu-6a19086001b5d7229728199d074b72c1d0dd34af.tar.bz2
yuzu-6a19086001b5d7229728199d074b72c1d0dd34af.tar.lz
yuzu-6a19086001b5d7229728199d074b72c1d0dd34af.tar.xz
yuzu-6a19086001b5d7229728199d074b72c1d0dd34af.tar.zst
yuzu-6a19086001b5d7229728199d074b72c1d0dd34af.zip
Diffstat (limited to 'src/core/hle/kernel/memory/memory_manager.h')
-rw-r--r--src/core/hle/kernel/memory/memory_manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/memory/memory_manager.h b/src/core/hle/kernel/memory/memory_manager.h
index 3cf444857..00c04eebd 100644
--- a/src/core/hle/kernel/memory/memory_manager.h
+++ b/src/core/hle/kernel/memory/memory_manager.h
@@ -67,8 +67,8 @@ private:
std::size_t Initialize(Pool new_pool, u64 start_address, u64 end_address);
- VAddr AllocateBlock(s32 index) {
- return heap.AllocateBlock(index);
+ VAddr AllocateBlock(s32 index, bool random) {
+ return heap.AllocateBlock(index, random);
}
void Free(VAddr addr, std::size_t num_pages) {