NESHawk; revert initial state change pending more testing.

This commit is contained in:
alyosha-tas 2021-12-18 16:42:01 -05:00
parent 22fe9a1b7b
commit 5e3e65a2ab
2 changed files with 2 additions and 2 deletions

View File

@ -664,7 +664,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
out_silence = true;
DMC_RATE = pal ? DMC_RATE_PAL : DMC_RATE_NTSC;
timer_reload = DMC_RATE[0];
timer = 1023; // confirmed in VisualNES although aligning controller read glitches still doesn't work
timer = 1020; // confirmed in VisualNES although aligning controller read glitches still doesn't work
sample_buffer_filled = false;
out_deltacounter = 64;
out_bits_remaining = 7; //confirmed in VisualNES

View File

@ -358,7 +358,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
ppu_open_bus = 0;
ppu_open_bus_decay_timer = new int[8];
double_2007_read = 0;
start_up_offset = 3;
start_up_offset = 4;
}
private void runppu()