Intellivision: Fix Space Patrol

This commit is contained in:
alyosha-tas 2018-02-17 16:08:46 -05:00
parent 97a24951f3
commit 92ec68349c
1 changed files with 3 additions and 0 deletions

View File

@ -153,6 +153,9 @@ namespace BizHawk.Emulation.Cores.Intellivision
else if (reg < 0x20)
{
value = (ushort)((value & 0x3FF) | 0x3C00);
// self interactions can never be set, even by writing directly
value &= (ushort)(0xFFFF - (1 << (reg - 0x18)));
}
else if (reg < 0x28)
{