summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-14 20:49:27 -0400
committerGravatar bunnei2014-05-14 20:49:27 -0400
commit9f5588725c9c16543f55ad05965086b8962a460f (patch)
tree1fa186cf085cbef7358d1af760b0f073a8074639 /src/core/hle/kernel/kernel.cpp
parentadded function stubs for EatCycles and ReSchedule (diff)
downloadyuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar.gz
yuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar.xz
yuzu-9f5588725c9c16543f55ad05965086b8962a460f.zip
changed primary thread priority to 0x30 - this is typical, not 0x31
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-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 fb6ae8495..1c26fb388 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -147,7 +147,8 @@ bool __KernelLoadExec(u32 entry_point) {
147 147
148 Core::g_app_core->SetPC(entry_point); 148 Core::g_app_core->SetPC(entry_point);
149 149
150 UID thread_id = __KernelSetupRootThread(0xDEADBEEF, 0, 0x31); 150 // 0x30 is the typical main thread priority I've seen used so far
151 UID thread_id = __KernelSetupRootThread(0xDEADBEEF, 0, 0x30);
151 152
152 return true; 153 return true;
153} 154}