From c60cb77ee8e96d94a86a27aba6d6f3dd22718245 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 8 Mar 2017 13:26:41 -0500 Subject: [PATCH] NES Update APU --- 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 ba936e56c9..503ab67eda 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs @@ -1182,9 +1182,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public void NESHardReset() { // "at power on it is as if $00 was written to $4017 9-12 cycles before the reset vector" - // that translates to a starting value for the counter of 6 + // that translates to a starting value for the counter of -2 - sequencer_counter = 6; + sequencer_counter = -2; }