Kernel: Fixed default thread priority.

This commit is contained in:
bunnei 2015-03-23 00:50:06 -04:00
parent b16fe21764
commit e08f55b1a7
2 changed files with 4 additions and 5 deletions

View file

@ -154,7 +154,7 @@ void Shutdown() {
*/
bool LoadExec(u32 entry_point) {
// 0x30 is the typical main thread priority I've seen used so far
g_main_thread = Kernel::SetupMainThread(Kernel::DEFAULT_STACK_SIZE, entry_point, 0x30);
g_main_thread = Kernel::SetupMainThread(Kernel::DEFAULT_STACK_SIZE, entry_point, THREADPRIO_DEFAULT);
return true;
}