diff options
| author | 2021-05-28 17:45:05 -0700 | |
|---|---|---|
| committer | 2021-05-28 17:45:05 -0700 | |
| commit | 420b1f89d319308ba43d1f92976aec39a5c2e3fd (patch) | |
| tree | 91dc40b7158f4e1fcc16bf1d46f7121d03cacdc8 /src/core/hle/kernel | |
| parent | Merge pull request #6356 from ogniK5377/ApplyNpadSystemCommonPolicy (diff) | |
| parent | core/arm_interface: Call SVC after end of dynarmic block. (diff) | |
| download | yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar.gz yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar.xz yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.zip | |
Merge pull request #6371 from degasus/drop_ExceptionalExit
core/arm_interface: Call SVC after end of dynarmic block.
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/k_scheduler.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_scheduler.cpp b/src/core/hle/kernel/k_scheduler.cpp index 2f82fbcd6..6a7d80d03 100644 --- a/src/core/hle/kernel/k_scheduler.cpp +++ b/src/core/hle/kernel/k_scheduler.cpp | |||
| @@ -659,7 +659,6 @@ void KScheduler::Unload(KThread* thread) { | |||
| 659 | 659 | ||
| 660 | if (thread) { | 660 | if (thread) { |
| 661 | if (thread->IsCallingSvc()) { | 661 | if (thread->IsCallingSvc()) { |
| 662 | system.ArmInterface(core_id).ExceptionalExit(); | ||
| 663 | thread->ClearIsCallingSvc(); | 662 | thread->ClearIsCallingSvc(); |
| 664 | } | 663 | } |
| 665 | if (!thread->IsTerminationRequested()) { | 664 | if (!thread->IsTerminationRequested()) { |