Update APU.cs
This commit is contained in:
parent
0a7002711f
commit
609b01408b
|
@ -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++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue