Skip to content
Snippets Groups Projects
Commit 9f558872 authored by bunnei's avatar bunnei
Browse files

changed primary thread priority to 0x30 - this is typical, not 0x31

parent 4d7f3c74
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment