diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-15 02:49:27 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-15 02:49:27 +0200 |
commit | 9f5588725c9c16543f55ad05965086b8962a460f (patch) | |
tree | 1fa186cf085cbef7358d1af760b0f073a8074639 /src/core/hle | |
parent | added function stubs for EatCycles and ReSchedule (diff) | |
download | yuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar yuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar.gz yuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar.bz2 yuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar.lz yuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar.xz yuzu-9f5588725c9c16543f55ad05965086b8962a460f.tar.zst yuzu-9f5588725c9c16543f55ad05965086b8962a460f.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/kernel/kernel.cpp | 3 |
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) { Core::g_app_core->SetPC(entry_point); - UID thread_id = __KernelSetupRootThread(0xDEADBEEF, 0, 0x31); + // 0x30 is the typical main thread priority I've seen used so far + UID thread_id = __KernelSetupRootThread(0xDEADBEEF, 0, 0x30); return true; } |