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);