CPU/CachedInterpreter: Very slight optmization

This commit is contained in:
Connor McLaughlin 2020-08-23 01:30:20 +10:00
parent d37fba81ed
commit d3f530f96e

View file

@ -165,15 +165,7 @@ static void ExecuteImpl()
LogCurrentState();
#endif
if (s_use_recompiler)
{
g_state.current_instruction_pc = g_state.regs.pc;
block->host_code();
}
else
{
InterpretCachedBlock<pgxp_mode>(*block);
}
InterpretCachedBlock<pgxp_mode>(*block);
if (g_state.pending_ticks >= g_state.downcount)
break;