diff options
| -rw-r--r-- | src/core/hle/svc.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 87d768856..48c8dee1e 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -331,6 +331,9 @@ static Result ClearEvent(Handle evt) { | |||
| 331 | /// Sleep the current thread | 331 | /// Sleep the current thread |
| 332 | static void SleepThread(s64 nanoseconds) { | 332 | static void SleepThread(s64 nanoseconds) { |
| 333 | DEBUG_LOG(SVC, "called nanoseconds=%lld", nanoseconds); | 333 | DEBUG_LOG(SVC, "called nanoseconds=%lld", nanoseconds); |
| 334 | |||
| 335 | // Check for next thread to schedule | ||
| 336 | HLE::Reschedule(__func__); | ||
| 334 | } | 337 | } |
| 335 | 338 | ||
| 336 | /// This returns the total CPU ticks elapsed since the CPU was powered-on | 339 | /// This returns the total CPU ticks elapsed since the CPU was powered-on |