From 41b68e198ecdfaf5db8d59c1e28af4b55b203e51 Mon Sep 17 00:00:00 2001 From: beirich Date: Wed, 16 Feb 2011 04:21:25 +0000 Subject: [PATCH] Fix Fantastic Dizzy; last broken SMS/GG game Im aware of! --- BizHawk.Emulation/Consoles/Sega/SMS/VDP.Mode4.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/VDP.Mode4.cs b/BizHawk.Emulation/Consoles/Sega/SMS/VDP.Mode4.cs index d908276fca..be42303c74 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/VDP.Mode4.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/VDP.Mode4.cs @@ -151,12 +151,13 @@ namespace BizHawk.Emulation.Consoles.Sega for (int xs = 0; xs < 8 && x + xs < 256; xs++) { byte color = PatternBuffer[(tileNo * 64) + (ys * 8) + xs]; - if (color != 0 && x + xs >= 0 && ScanlinePriorityBuffer[x + xs] == 0) + if (color != 0 && x + xs >= 0) { - FrameBuffer[(ys + y) * 256 + x + xs] = Palette[(color + 16)]; if (SpriteCollisionBuffer[x + xs] != 0) StatusByte |= 0x20; // Set Collision bit SpriteCollisionBuffer[x + xs] = 1; + if (ScanlinePriorityBuffer[x + xs] == 0) + FrameBuffer[(ys + y) * 256 + x + xs] = Palette[(color + 16)]; } } SpritesDrawnThisScanline++;