mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-16 08:37:58 -05:00
CpuCore: Clear exclusive state after doing a run in dynarmic.
This commit corrects an error in which a Core could remain with an exclusive state after running, leaving space for possible race conditions between changing cores.
This commit is contained in:
committed by
FernandoS27
parent
2f79cc3ef5
commit
40cd4df584
@ -96,6 +96,8 @@ void Cpu::RunLoop(bool tight_loop) {
|
||||
} else {
|
||||
arm_interface->Step();
|
||||
}
|
||||
// We are stopping a run, exclusive state must be cleared
|
||||
arm_interface->ClearExclusiveState();
|
||||
}
|
||||
core_timing.Advance();
|
||||
|
||||
|
Reference in New Issue
Block a user