summaryrefslogtreecommitdiffstats
path: root/src/core/arm
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-07-25 18:00:31 +0200
committerGitHub <noreply@github.com>2022-07-25 18:00:31 +0200
commit591d1f1b09d2af6e432d4fb27af3321919758c0c (patch)
tree5b0efec541b5db56b7d32e6c90f1b2587c71611d /src/core/arm
parentMerge pull request #8484 from german77/irs_release (diff)
parentkernel: Ensure all uses of disable_count are balanced (diff)
downloadyuzu-591d1f1b09d2af6e432d4fb27af3321919758c0c.tar
yuzu-591d1f1b09d2af6e432d4fb27af3321919758c0c.tar.gz
yuzu-591d1f1b09d2af6e432d4fb27af3321919758c0c.tar.bz2
yuzu-591d1f1b09d2af6e432d4fb27af3321919758c0c.tar.lz
yuzu-591d1f1b09d2af6e432d4fb27af3321919758c0c.tar.xz
yuzu-591d1f1b09d2af6e432d4fb27af3321919758c0c.tar.zst
yuzu-591d1f1b09d2af6e432d4fb27af3321919758c0c.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/arm_interface.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp
index e72b250be..953d96439 100644
--- a/src/core/arm/arm_interface.cpp
+++ b/src/core/arm/arm_interface.cpp
@@ -154,9 +154,10 @@ void ARM_Interface::Run() {
break;
}
- // Handle syscalls and scheduling (this may change the current thread)
+ // Handle syscalls and scheduling (this may change the current thread/core)
if (Has(hr, svc_call)) {
Kernel::Svc::Call(system, GetSvcNumber());
+ break;
}
if (Has(hr, break_loop) || !uses_wall_clock) {
break;