From 2f94766f0eb9d5b1c1d488d4f76a9786a5edeb7c Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 11 Oct 2016 09:10:27 -0400 Subject: [PATCH] Revert previous per console test --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs index c457fbf240..ba936e56c9 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs @@ -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 == 0) + if (timer % 2 == 1) { delay = 3; } else @@ -808,7 +808,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } } else { - if (timer % 2 == 0) + if (timer % 2 == 1) { delay = 2; }