summaryrefslogtreecommitdiffstats
path: root/src/core/arm/arm_interface.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-06-27 00:52:16 +0200
committerLiam <byteslice@airmail.cc>2022-07-15 04:47:18 +0200
commit0624c880bd5af45ae9095465e079fa55458515f6 (patch)
treea8b9f3adf516af30cad021fc32f8669426946cd5 /src/core/arm/arm_interface.cpp
parentMerge pull request #8540 from lat9nq/copy-nv-ffmpeg (diff)
downloadyuzu-0624c880bd5af45ae9095465e079fa55458515f6.tar
yuzu-0624c880bd5af45ae9095465e079fa55458515f6.tar.gz
yuzu-0624c880bd5af45ae9095465e079fa55458515f6.tar.bz2
yuzu-0624c880bd5af45ae9095465e079fa55458515f6.tar.lz
yuzu-0624c880bd5af45ae9095465e079fa55458515f6.tar.xz
yuzu-0624c880bd5af45ae9095465e079fa55458515f6.tar.zst
yuzu-0624c880bd5af45ae9095465e079fa55458515f6.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 cef79b245..cdf388fb9 100644
--- a/src/core/arm/arm_interface.cpp
+++ b/src/core/arm/arm_interface.cpp
@@ -155,9 +155,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;