CPU/Interpreter: Fix incorrect downcount comparison
This commit is contained in:
parent
45d0af8b30
commit
d37fba81ed
|
@ -1355,7 +1355,7 @@ static void ExecuteImpl()
|
||||||
{
|
{
|
||||||
TimingEvents::UpdateCPUDowncount();
|
TimingEvents::UpdateCPUDowncount();
|
||||||
|
|
||||||
while (g_state.pending_ticks <= g_state.downcount)
|
while (g_state.pending_ticks < g_state.downcount)
|
||||||
{
|
{
|
||||||
if (HasPendingInterrupt())
|
if (HasPendingInterrupt())
|
||||||
DispatchInterrupt();
|
DispatchInterrupt();
|
||||||
|
|
Loading…
Reference in New Issue