diff options
Diffstat (limited to 'src/core/hle/svc.cpp')
| -rw-r--r-- | src/core/hle/svc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 8df861669..d72839172 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -405,6 +405,7 @@ static Result DuplicateHandle(Handle* out, Handle handle) { | |||
| 405 | /// Signals an event | 405 | /// Signals an event |
| 406 | static Result SignalEvent(Handle evt) { | 406 | static Result SignalEvent(Handle evt) { |
| 407 | LOG_TRACE(Kernel_SVC, "called event=0x%08X", evt); | 407 | LOG_TRACE(Kernel_SVC, "called event=0x%08X", evt); |
| 408 | HLE::Reschedule(__func__); | ||
| 408 | return Kernel::SignalEvent(evt).raw; | 409 | return Kernel::SignalEvent(evt).raw; |
| 409 | } | 410 | } |
| 410 | 411 | ||