diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 87d76885679162c464cd84f3010191b4e7004676..48c8dee1eee3eed75ae2e2bedc06229cf7891607 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -331,6 +331,9 @@ static Result ClearEvent(Handle evt) { /// Sleep the current thread static void SleepThread(s64 nanoseconds) { DEBUG_LOG(SVC, "called nanoseconds=%lld", nanoseconds); + + // Check for next thread to schedule + HLE::Reschedule(__func__); } /// This returns the total CPU ticks elapsed since the CPU was powered-on