Update APU.cs

This commit is contained in:
alyosha-tas 2016-10-07 13:59:00 -04:00 committed by GitHub
parent 0a7002711f
commit 609b01408b
1 changed files with 3 additions and 3 deletions

View File

@ -799,7 +799,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
// calls from write take one less cycle, but start on a write instead of a read
if (!apu.call_from_write)
{
if (timer%2==1)
if (timer % 2 == 0)
{
delay = 3;
} else
@ -808,7 +808,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
}
} else
{
if (timer % 2 == 1)
if (timer % 2 == 0)
{
delay = 2;
}
@ -1456,4 +1456,4 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
sampleclock++;
}
}
}
}