interface_x64: Remove is_executing assert from HaltExecution

In multithreaded code this can be triggered due to a race.
This commit is contained in:
MerryMage 2017-10-14 23:35:01 +01:00
parent f6cf265bc5
commit 148c01e08f

View file

@ -185,10 +185,7 @@ void Jit::Reset() {
}
void Jit::HaltExecution() {
ASSERT(is_executing);
impl->jit_state.halt_requested = true;
// TODO: Uh do other stuff to JitState pls.
}
std::array<u32, 16>& Jit::Regs() {