summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-05-29 02:45:05 +0200
committerGitHub <noreply@github.com>2021-05-29 02:45:05 +0200
commit420b1f89d319308ba43d1f92976aec39a5c2e3fd (patch)
tree91dc40b7158f4e1fcc16bf1d46f7121d03cacdc8 /src/core/hle
parentMerge pull request #6356 from ogniK5377/ApplyNpadSystemCommonPolicy (diff)
parentcore/arm_interface: Call SVC after end of dynarmic block. (diff)
downloadyuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar
yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar.gz
yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar.bz2
yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar.lz
yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar.xz
yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.tar.zst
yuzu-420b1f89d319308ba43d1f92976aec39a5c2e3fd.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/kernel/k_scheduler.cpp1
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) {
if (thread) {
if (thread->IsCallingSvc()) {
- system.ArmInterface(core_id).ExceptionalExit();
thread->ClearIsCallingSvc();
}
if (!thread->IsTerminationRequested()) {