mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 20:05:42 -04:00
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…
x
Reference in New Issue
Block a user