summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-24 21:28:04 +0100
committerLioncash <mathew1800@gmail.com>2019-03-24 22:08:30 +0100
commit99a163478be9ca285280ee59aa7800903b8571c2 (patch)
tree68d92d914872bd772cb5e2daa2cf3a5c2f1d0295 /src/core/hle/kernel/svc.cpp
parentkernel/vm_manager: Handle case of identical calls to HeapAllocate (diff)
downloadyuzu-99a163478be9ca285280ee59aa7800903b8571c2.tar
yuzu-99a163478be9ca285280ee59aa7800903b8571c2.tar.gz
yuzu-99a163478be9ca285280ee59aa7800903b8571c2.tar.bz2
yuzu-99a163478be9ca285280ee59aa7800903b8571c2.tar.lz
yuzu-99a163478be9ca285280ee59aa7800903b8571c2.tar.xz
yuzu-99a163478be9ca285280ee59aa7800903b8571c2.tar.zst
yuzu-99a163478be9ca285280ee59aa7800903b8571c2.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index f689f745f..6a8960c8d 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -175,8 +175,7 @@ static ResultCode SetHeapSize(VAddr* heap_addr, u64 heap_size) {
}
auto& vm_manager = Core::System::GetInstance().Kernel().CurrentProcess()->VMManager();
- const auto alloc_result = vm_manager.HeapAllocate(heap_size);
-
+ const auto alloc_result = vm_manager.SetHeapSize(heap_size);
if (alloc_result.Failed()) {
return alloc_result.Code();
}