Atari 2600: Fixed PlayField Score flag not being set.

This commit is contained in:
scepheo 2014-08-29 20:09:08 +00:00
parent f456fea9be
commit a75827687d
1 changed files with 1 additions and 0 deletions

View File

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