2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

arm_dynarmic: Remove IsExecuting check from PrepareReschedule

No longer required. HaltExecution is a no-op if it is not currently executing.
This commit is contained in:
MerryMage 2018-08-13 13:59:01 +01:00
parent e67630b51e
commit fcc5155601

View file

@ -243,10 +243,8 @@ void ARM_Dynarmic::LoadContext(const ThreadContext& ctx) {
}
void ARM_Dynarmic::PrepareReschedule() {
if (jit->IsExecuting()) {
jit->HaltExecution();
}
}
void ARM_Dynarmic::ClearInstructionCache() {
jit->ClearCache();