diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-10-29 11:24:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-29 11:24:52 -0400 |
| commit | 6aee148b170e6886e58a3996f729b2cc87329e95 (patch) | |
| tree | 39efd9469af6a922ee5f38d906940412333c1455 /src/core/hle/kernel/svc/svc_synchronization.cpp | |
| parent | b5b93e6741f28f1b276e1ad2899beff9af87afff (diff) | |
| parent | 19e9bde9e069f841387b8d7cbb4b9074d5f30c21 (diff) | |
Merge pull request #11843 from liamwhite/sync-process
kernel: update KProcess
Diffstat (limited to 'src/core/hle/kernel/svc/svc_synchronization.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc/svc_synchronization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc/svc_synchronization.cpp b/src/core/hle/kernel/svc/svc_synchronization.cpp index 8ebc1bd1c..6c79cfd8d 100644 --- a/src/core/hle/kernel/svc/svc_synchronization.cpp +++ b/src/core/hle/kernel/svc/svc_synchronization.cpp @@ -132,7 +132,7 @@ void SynchronizePreemptionState(Core::System& system) { GetCurrentThread(kernel).ClearInterruptFlag(); // Unpin the current thread. - cur_process->UnpinCurrentThread(core_id); + cur_process->UnpinCurrentThread(); } } |
