From 1333813bb1066906635bd43e3cb18a7c333265c1 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Fri, 19 Nov 2021 17:06:10 -0500 Subject: [PATCH] SMS: Don't process collision on sprites above screen height, fixes ecco the dolphin #1611 --- .../Consoles/Sega/SMS/VDP.Mode4.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs index 2206401dc2..623a70c60b 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs @@ -126,6 +126,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { renderHappens = false; overflowHappens = false; + collisionHappens = false; } int SpriteBase = SpriteAttributeTableBase; @@ -174,14 +175,15 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { if (SpriteCollisionBuffer[x + xs] != 0) { - if (collisionHappens) - StatusByte |= 0x20; // Set Collision bit + if (collisionHappens) + StatusByte |= 0x20; // Set Collision bit } else if (renderHappens && ScanlinePriorityBuffer[x + xs] == 0) { FrameBuffer[(ys + y) * 256 + x + xs] = Palette[(color + 16)]; } - SpriteCollisionBuffer[x + xs] = 1; + if (collisionHappens) + SpriteCollisionBuffer[x + xs] = (byte)i; } } SpritesDrawnThisScanline++; @@ -203,6 +205,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { renderHappens = false; overflowHappens = false; + collisionHappens = false; } int SpriteBase = SpriteAttributeTableBase; @@ -258,7 +261,8 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem { FrameBuffer[(ys + y) * 256 + x + xs] = Palette[(color + 16)]; } - SpriteCollisionBuffer[x + xs] = 1; + if (collisionHappens) + SpriteCollisionBuffer[x + xs] = 1; } } SpritesDrawnThisScanline++;