Skip to content
Snippets Groups Projects
Commit fcc51556 authored by MerryMage's avatar MerryMage
Browse files

arm_dynarmic: Remove IsExecuting check from PrepareReschedule

No longer required. HaltExecution is a no-op if it is not currently executing.
parent e67630b5
No related branches found
No related tags found
No related merge requests found
...@@ -243,9 +243,7 @@ void ARM_Dynarmic::LoadContext(const ThreadContext& ctx) { ...@@ -243,9 +243,7 @@ void ARM_Dynarmic::LoadContext(const ThreadContext& ctx) {
} }
void ARM_Dynarmic::PrepareReschedule() { void ARM_Dynarmic::PrepareReschedule() {
if (jit->IsExecuting()) { jit->HaltExecution();
jit->HaltExecution();
}
} }
void ARM_Dynarmic::ClearInstructionCache() { void ARM_Dynarmic::ClearInstructionCache() {
......
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