Merge pull request #1053 from MerryMage/rm-IsExecuting

arm_dynarmic: Remove IsExecuting check from PrepareReschedule
This commit is contained in:
bunnei 2018-08-13 12:18:51 -04:00 committed by GitHub
commit 875d52a81f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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