arm_dynarmic: Check if jit is nullptr when preparing reschedule

Prevents crash with multiprocess loading.
This commit is contained in:
Zach Hilman 2019-06-10 00:14:25 -04:00
parent 364932df3a
commit 425cdf946c

View File

@ -257,6 +257,9 @@ void ARM_Dynarmic::LoadContext(const ThreadContext& ctx) {
}
void ARM_Dynarmic::PrepareReschedule() {
if (jit == nullptr)
return;
jit->HaltExecution();
}