summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nso.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-21 00:41:11 +0200
committerSubv <subv2112@gmail.com>2018-04-21 04:04:35 +0200
commita70ed9c8ae034a1035d1b099161ad740840c5a94 (patch)
tree4dfc0ddeec153ce97041a3756169bf70de698153 /src/core/loader/nso.cpp
parentQt: Update the WaitTree widget to show info about the current mutex of each thread. (diff)
downloadyuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.gz
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.bz2
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.lz
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.xz
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.zst
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.zip
Diffstat (limited to '')
-rw-r--r--src/core/loader/nso.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp
index 3bc10ed0d..962bed2ab 100644
--- a/src/core/loader/nso.cpp
+++ b/src/core/loader/nso.cpp
@@ -165,7 +165,7 @@ ResultStatus AppLoader_NSO::Load(Kernel::SharedPtr<Kernel::Process>& process) {
process->address_mappings = default_address_mappings;
process->resource_limit =
Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION);
- process->Run(Memory::PROCESS_IMAGE_VADDR, 48, Memory::DEFAULT_STACK_SIZE);
+ process->Run(Memory::PROCESS_IMAGE_VADDR, THREADPRIO_DEFAULT, Memory::DEFAULT_STACK_SIZE);
is_loaded = true;
return ResultStatus::Success;