From 40aae2e31260e23ccdd08e7659c29ec426535aaa Mon Sep 17 00:00:00 2001 From: Ryan Holtz Date: Fri, 31 Dec 2010 07:36:15 +0000 Subject: [PATCH] Fixed alpha compare in the N64 RDP implementation. [Harmony] --- src/mame/video/rdpblend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/video/rdpblend.c b/src/mame/video/rdpblend.c index 0fffb222baa..a3260f0a708 100644 --- a/src/mame/video/rdpblend.c +++ b/src/mame/video/rdpblend.c @@ -22,7 +22,7 @@ bool Blender::Blend1Cycle(UINT32* fr, UINT32* fg, UINT32* fb, int dith, int adse if (!AlphaCompare(m_rdp->GetPixelColor()->i.a)) { - //return false; + return false; } if (m_other_modes->antialias_en ? (!m_misc_state->m_curpixel_cvg) : (!m_misc_state->m_curpixel_cvbit)) @@ -65,7 +65,7 @@ bool Blender::Blend2Cycle(UINT32* fr, UINT32* fg, UINT32* fb, int dith, int adse if (!AlphaCompare(m_rdp->GetPixelColor()->i.a)) { - //return false; + return false; } if (m_other_modes->antialias_en ? (!m_misc_state->m_curpixel_cvg) : (!m_misc_state->m_curpixel_cvbit))