Przeglądaj źródła

SVC: Reschedule on svcCreateThread.

bunnei 11 lat temu
rodzic
commit
ee3377b67d
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2 0
      src/core/hle/svc.cpp

+ 2 - 0
src/core/hle/svc.cpp

@@ -336,6 +336,8 @@ static ResultCode CreateThread(u32* out_handle, u32 priority, u32 entry_point, u
             "thread designated for system CPU core (UNIMPLEMENTED) will be run with app core scheduling");
     }
 
+    HLE::Reschedule(__func__);
+
     return RESULT_SUCCESS;
 }