summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/arm/arm_interface.cpp')
-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() {
154 break; 154 break;
155 } 155 }
156 156
157 // Handle syscalls and scheduling (this may change the current thread) 157 // Handle syscalls and scheduling (this may change the current thread/core)
158 if (Has(hr, svc_call)) { 158 if (Has(hr, svc_call)) {
159 Kernel::Svc::Call(system, GetSvcNumber()); 159 Kernel::Svc::Call(system, GetSvcNumber());
160 break;
160 } 161 }
161 if (Has(hr, break_loop) || !uses_wall_clock) { 162 if (Has(hr, break_loop) || !uses_wall_clock) {
162 break; 163 break;