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

dynarmic: Fix single core mode
This commit is contained in:
Fernando S 2022-04-13 23:21:11 +02:00 committed by GitHub
commit 072b3e6e26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -232,7 +232,7 @@ void ARM_Dynarmic_32::Run() {
if (Has(hr, svc_call)) {
Kernel::Svc::Call(system, svc_swi);
}
if (Has(hr, break_loop)) {
if (Has(hr, break_loop) || !uses_wall_clock) {
break;
}
}

View file

@ -293,7 +293,7 @@ void ARM_Dynarmic_64::Run() {
if (Has(hr, svc_call)) {
Kernel::Svc::Call(system, svc_swi);
}
if (Has(hr, break_loop)) {
if (Has(hr, break_loop) || !uses_wall_clock) {
break;
}
}