From a75827687da5d0a32672123461b05018025dcdbf Mon Sep 17 00:00:00 2001 From: scepheo Date: Fri, 29 Aug 2014 20:09:08 +0000 Subject: [PATCH] Atari 2600: Fixed PlayField Score flag not being set. --- BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs index 675107af13..54cfad5404 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs @@ -894,6 +894,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 else if (maskedAddr == 0x0A) // CTRLPF { _playField.Reflect = (value & 0x01) != 0; + _playField.Score = (value & 0x02) != 0; _playField.Priority = (value & 0x04) != 0; _ball.Size = (byte)((value & 0x30) >> 4);