From 37c293868281f548a6be00cfce0a3f2b273f3308 Mon Sep 17 00:00:00 2001 From: cam900 Date: Thu, 6 Feb 2020 19:46:59 +0900 Subject: stvvdp1.cpp : Minor fix for gouraud shading --- src/devices/video/stvvdp1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/video/stvvdp1.cpp b/src/devices/video/stvvdp1.cpp index d5f2618d819..fbbe7544cf2 100644 --- a/src/devices/video/stvvdp1.cpp +++ b/src/devices/video/stvvdp1.cpp @@ -526,7 +526,7 @@ uint8_t saturn_state::stv_read_gouraud_table( void ) { int gaddr; - if ( (stv2_current_sprite.CMDPMOD & 0x7) == 4 ) + if ( (stv2_current_sprite.CMDPMOD & 0x4) == 4 ) { gaddr = stv2_current_sprite.CMDGRDA * 8; stv_gouraud_shading.GA = (m_vdp1_vram[gaddr/4] >> 16) & 0xffff; -- cgit v1.2.3