A2600: Fixed graphics on games including Enduro and Activision Boxing

This commit is contained in:
pjgat09 2012-10-26 03:44:13 +00:00
parent bff6ac53d7
commit dfb45aa99c
1 changed files with 3 additions and 3 deletions

View File

@ -1158,15 +1158,15 @@ namespace BizHawk.Emulation.Consoles.Atari
} }
else if (maskedAddr == 0x12) // RESM0 else if (maskedAddr == 0x12) // RESM0
{ {
player0.missile.hPosCnt = 160 - 4; player0.missile.hPosCnt = (byte)(hsyncCnt < 68 ? 160 - 2 : 160 - 4);
} }
else if (maskedAddr == 0x13) // RESM1 else if (maskedAddr == 0x13) // RESM1
{ {
player1.missile.hPosCnt = 160 - 4; player1.missile.hPosCnt = (byte)(hsyncCnt < 68 ? 160 - 2 : 160 - 4);
} }
else if (maskedAddr == 0x14) // RESBL else if (maskedAddr == 0x14) // RESBL
{ {
ball.hPosCnt = 160-4; ball.hPosCnt = (byte)(hsyncCnt < 68 ? 160 - 2 : 160 - 4);
} }
else if (maskedAddr == 0x15) // AUDC0 else if (maskedAddr == 0x15) // AUDC0
{ {