Merge pull request #2923 from yuzu-emu/revert-2574-dynarmic-jit-nullptr

Revert "arm_dynarmic: Check if jit is nullptr when preparing reschedule"
This commit is contained in:
bunnei 2019-09-29 21:54:36 -04:00 committed by GitHub
commit e11afeb34d
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

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