CPU/Recompiler: Add register allocation safety check to fastmem

This commit is contained in:
Connor McLaughlin
2020-10-26 21:56:56 +10:00
parent f2e1159173
commit cbc7e3d64a
3 changed files with 15 additions and 3 deletions

View File

@ -305,7 +305,7 @@ void ExecuteRecompiler()
const u32 pc = g_state.regs.pc;
g_state.current_instruction_pc = pc;
const u32 fast_map_index = GetFastMapIndex(pc);
s_fast_map[fast_map_index]();
s_single_block_asm_dispatcher[fast_map_index]();
}
TimingEvents::RunEvents();