From bd5616050a87eba3ff1b0e6e9225881d4f0549bf Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Fri, 27 May 2016 08:52:24 -0400 Subject: [PATCH] Add poke flag --- BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs index 19fcd5a887..adf307eaa1 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.Core.cs @@ -71,7 +71,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 addr = (ushort)(addr & 0x1FFF); if ((addr & 0x1080) == 0) { - _tia.WriteMemory(addr, value); + _tia.WriteMemory(addr, value, false); } else if ((addr & 0x1080) == 0x0080) { @@ -88,7 +88,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 addr = (ushort)(addr & 0x1FFF); if ((addr & 0x1080) == 0) { - _tia.WriteMemory(addr, value); + _tia.WriteMemory(addr, value, true); } else if ((addr & 0x1080) == 0x0080) {