diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-14 20:03:10 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-14 20:03:13 +0200 |
commit | ec2a6e5ba801d850380742db19c1546ac3ff9c4b (patch) | |
tree | 44638c8d178116c2d990bae4a9dfa7319f36cdaa /src/core/hle/kernel/svc.cpp | |
parent | Merge pull request #4636 from lioncash/kernel-hle (diff) | |
download | yuzu-ec2a6e5ba801d850380742db19c1546ac3ff9c4b.tar yuzu-ec2a6e5ba801d850380742db19c1546ac3ff9c4b.tar.gz yuzu-ec2a6e5ba801d850380742db19c1546ac3ff9c4b.tar.bz2 yuzu-ec2a6e5ba801d850380742db19c1546ac3ff9c4b.tar.lz yuzu-ec2a6e5ba801d850380742db19c1546ac3ff9c4b.tar.xz yuzu-ec2a6e5ba801d850380742db19c1546ac3ff9c4b.tar.zst yuzu-ec2a6e5ba801d850380742db19c1546ac3ff9c4b.zip |
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 01ae57053..bafd1ced7 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -346,7 +346,7 @@ static ResultCode SendSyncRequest(Core::System& system, Handle handle) { SchedulerLock lock(system.Kernel()); thread->InvalidateHLECallback(); thread->SetStatus(ThreadStatus::WaitIPC); - session->SendSyncRequest(SharedFrom(thread), system.Memory()); + session->SendSyncRequest(SharedFrom(thread), system.Memory(), system.CoreTiming()); } if (thread->HasHLECallback()) { |