CPU/Recompiler: Fix mid-block software interrupts not updating pc

Fixes Need for Speed: High Stakes hanging at boot.
This commit is contained in:
Connor McLaughlin
2020-08-09 04:32:52 +10:00
parent 223074b78f
commit 5b9db71b87
3 changed files with 9 additions and 8 deletions

View File

@ -141,8 +141,8 @@ void Execute()
reexecute_block:
#if 0
const u32 tick = g_system->GetGlobalTickCounter() + m_core->GetPendingTicks();
if (tick == 61033207)
const u32 tick = TimingEvents::GetGlobalTickCounter() + CPU::GetPendingTicks();
if (tick == 4188233674)
__debugbreak();
#endif