瀏覽代碼

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

bunnei 12 年之前
父節點
當前提交
ce1c561278
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/core/hle/kernel/kernel.cpp

+ 1 - 1
src/core/hle/kernel/kernel.cpp

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