From 6bc9a027b3ef01bcd4b4e16f638a49c397d47fce Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 17 Dec 2016 22:09:23 -0500 Subject: [PATCH] Intellivision Bug fix to STIC --- BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs index 3a2529e501..9248d674f5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs @@ -286,7 +286,7 @@ namespace BizHawk.Emulation.Cores.Intellivision colors[0] = fg; colors[1] = (card >> 3) & 0x0007; colors[2] = (card >> 6) & 0x0007; - colors[3] = ((card >> 11) & 0x0004) | ((card >> 9) & 0x0003); + colors[3] = ((card >> 10) & 0x0004) | ((card >> 9) & 0x0003); for (int z=0;z<4;z++) { @@ -341,10 +341,10 @@ namespace BizHawk.Emulation.Cores.Intellivision // note that the collision field is attached to the lower right corner of the BG // so we add 8 to x and 16 to y here // also notice the extra condition attached to colored squares mode - if ((card_col * 8 + (7 - squares_col) + 8) < 167 && square_col[color]==1) + if ((card_col * 8 + squares_col + 8) < 167 && square_col[color]==1) { - Collision[card_col * 8 + (7 - squares_col) + 8, (card_row * 8 + squares_row) * 2 + 16] = 1 << 8; - Collision[card_col * 8 + (7 - squares_col) + 8, (card_row * 8 + squares_row) * 2 + 16 + 1] = 1 << 8; + Collision[card_col * 8 + squares_col + 8, (card_row * 8 + squares_row) * 2 + 16] = 1 << 8; + Collision[card_col * 8 + squares_col + 8, (card_row * 8 + squares_row) * 2 + 16 + 1] = 1 << 8; } } }