Skip to content
Snippets Groups Projects
Unverified Commit 072b3e6e authored by Fernando S's avatar Fernando S Committed by GitHub
Browse files

Merge pull request #8202 from merryhime/fix-single-core

dynarmic: Fix single core mode
parents 276764cf ba08f63e
No related branches found
No related tags found
No related merge requests found
...@@ -232,7 +232,7 @@ void ARM_Dynarmic_32::Run() { ...@@ -232,7 +232,7 @@ void ARM_Dynarmic_32::Run() {
if (Has(hr, svc_call)) { if (Has(hr, svc_call)) {
Kernel::Svc::Call(system, svc_swi); Kernel::Svc::Call(system, svc_swi);
} }
if (Has(hr, break_loop)) { if (Has(hr, break_loop) || !uses_wall_clock) {
break; break;
} }
} }
......
...@@ -293,7 +293,7 @@ void ARM_Dynarmic_64::Run() { ...@@ -293,7 +293,7 @@ void ARM_Dynarmic_64::Run() {
if (Has(hr, svc_call)) { if (Has(hr, svc_call)) {
Kernel::Svc::Call(system, svc_swi); Kernel::Svc::Call(system, svc_swi);
} }
if (Has(hr, break_loop)) { if (Has(hr, break_loop) || !uses_wall_clock) {
break; break;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment