mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-12 05:35:47 -04:00
CPU/Interpreter: Fix incorrect downcount comparison
This commit is contained in:
@ -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();
|
||||||
|
Reference in New Issue
Block a user