mirror of
https://git.tardis.systems/mirrors/yuzu
synced 2025-08-20 02:10:24 +02:00
Merge pull request #8202 from merryhime/fix-single-core
dynarmic: Fix single core mode
This commit is contained in:
commit
072b3e6e26
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user