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

kernel: changed current default thread priority back to 0x30 - I think this is more correct

parent 9ece9da5
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ bool LoadExec(u32 entry_point) {
Core::g_app_core->SetPC(entry_point);
// 0x30 is the typical main thread priority I've seen used so far
g_main_thread = Kernel::SetupMainThread(THREADPRIO_DEFAULT);
g_main_thread = Kernel::SetupMainThread(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