summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/svc.cpp2
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
336 "thread designated for system CPU core (UNIMPLEMENTED) will be run with app core scheduling"); 336 "thread designated for system CPU core (UNIMPLEMENTED) will be run with app core scheduling");
337 } 337 }
338 338
339 HLE::Reschedule(__func__);
340
339 return RESULT_SUCCESS; 341 return RESULT_SUCCESS;
340} 342}
341 343