CPU: Fix assertion tripping in debug builds

This commit is contained in:
Stenzek 2024-08-19 22:03:07 +10:00
parent fefcfc906d
commit 18ca0da78d
No known key found for this signature in database

View file

@ -2306,11 +2306,12 @@ ALWAYS_INLINE_RELEASE void CPU::MemoryBreakpointCheck(VirtualMemoryAddress addre
template<PGXPMode pgxp_mode, bool debug>
[[noreturn]] void CPU::ExecuteImpl()
{
for (;;)
{
if (g_state.pending_ticks >= g_state.downcount)
TimingEvents::RunEvents();
while (g_state.pending_ticks < g_state.downcount)
for (;;)
{
do
{
if constexpr (debug)
{
@ -2369,7 +2370,9 @@ template<PGXPMode pgxp_mode, bool debug>
ExitExecution();
}
}
}
} while (g_state.pending_ticks < g_state.downcount);
TimingEvents::RunEvents();
}
}