NES Update APU

This commit is contained in:
alyosha-tas 2017-03-08 13:26:41 -05:00 committed by GitHub
parent fed9380e33
commit c60cb77ee8
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}