mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-11 03:35:48 -04:00
CPU/Recompiler: Only check interpreter load delay when it's dirty
This commit is contained in:
@ -1661,6 +1661,9 @@ void CodeGenerator::EmitMoveNextInterpreterLoadDelay()
|
||||
|
||||
void CodeGenerator::EmitCancelInterpreterLoadDelayForReg(Reg reg)
|
||||
{
|
||||
if (!m_load_delay_dirty)
|
||||
return;
|
||||
|
||||
auto load_delay_reg = m_emit->byte[GetCPUPtrReg() + offsetof(Core, m_load_delay_reg)];
|
||||
|
||||
Xbyak::Label skip_cancel;
|
||||
|
Reference in New Issue
Block a user