summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/stvvdp1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/stvvdp1.cpp')
-rw-r--r--src/devices/video/stvvdp1.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/video/stvvdp1.cpp b/src/devices/video/stvvdp1.cpp
index ad350718e39..c731041069f 100644
--- a/src/devices/video/stvvdp1.cpp
+++ b/src/devices/video/stvvdp1.cpp
@@ -1060,7 +1060,8 @@ void saturn_state::stv_vdp1_set_drawpixel( void )
return;
}
- if (sprite_type == 4 && ((stv2_current_sprite.CMDPMOD & 0x7) == 0))
+ // polygon / polyline / line with replace case
+ if (sprite_type & 4 && ((stv2_current_sprite.CMDPMOD & 0x7) == 0))
{
drawpixel = &saturn_state::drawpixel_poly;
}