1
0
Fork 0
mirror of https://github.com/yuzu-emu/yuzu-mainline.git synced 2025-01-13 13:25:36 +00:00

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

This commit is contained in:
bunnei 2014-05-14 20:49:27 -04:00
parent 4d7f3c74fd
commit 9f5588725c

View file

@ -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;
}