diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/svc.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index bbb4eb9cd..e89e97238 100644 --- a/src/core/hle/svc.cpp +++ b/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; } |