From 826419a0a3e85d82340b3750e0da0fd81a57dc1b Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 18 Oct 2012 19:45:44 +0000 Subject: [PATCH] AtariHawk - don't flag a frame as lag if the control switches are being read --- BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs b/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs index 865614f05a..8a67e911ee 100644 --- a/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs +++ b/BizHawk.Emulation/Consoles/Atari/2600/Atari2600.Core.cs @@ -253,7 +253,7 @@ namespace BizHawk if (bw) value &= 0xF7; if (p0difficulty) value &= 0xBF; if (p1difficulty) value &= 0x7F; - + _islag = false; return value; } }