Browse Source
Merge pull request #1053 from MerryMage/rm-IsExecuting
arm_dynarmic: Remove IsExecuting check from PrepareReschedule
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
3 deletions
-
src/core/arm/dynarmic/arm_dynarmic.cpp
|
|
|
@ -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() { |
|
|
|
|