summaryrefslogtreecommitdiff
path: root/src/core/loader/elf.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-16 20:06:27 -0400
committerGravatar GitHub2018-03-16 20:06:27 -0400
commite7ba2a4447bb06146f23163e82689852bf83008e (patch)
tree7ff83f9d4b4fd4df5f48333d07fb743e3c4531cb /src/core/loader/elf.cpp
parentMerge pull request #237 from mailwl/nifm-module (diff)
parentprocess: MirrorMemory should use MemoryState::Mapped. (diff)
downloadyuzu-e7ba2a4447bb06146f23163e82689852bf83008e.tar.gz
yuzu-e7ba2a4447bb06146f23163e82689852bf83008e.tar.xz
yuzu-e7ba2a4447bb06146f23163e82689852bf83008e.zip
Merge pull request #232 from bunnei/heap-fixes
Various heap fixes for libtransistor
Diffstat (limited to 'src/core/loader/elf.cpp')
-rw-r--r--src/core/loader/elf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp
index 164d52258..0ba8c6fd2 100644
--- a/src/core/loader/elf.cpp
+++ b/src/core/loader/elf.cpp
@@ -414,7 +414,7 @@ ResultStatus AppLoader_ELF::Load(Kernel::SharedPtr<Kernel::Process>& process) {
414 process->resource_limit = 414 process->resource_limit =
415 Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION); 415 Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION);
416 416
417 process->Run(codeset->entrypoint, 48, Kernel::DEFAULT_STACK_SIZE); 417 process->Run(codeset->entrypoint, 48, Memory::STACK_SIZE);
418 418
419 is_loaded = true; 419 is_loaded = true;
420 return ResultStatus::Success; 420 return ResultStatus::Success;