mirror of
https://github.com/holub/mame
synced 2025-10-08 17:37:56 +03:00
stvvdp1.cpp: fix line / polyline drawing (Die Hard Arcade wireframe map) [Angelo Salese]
This commit is contained in:
parent
860bae6ac1
commit
ddb82d41b1
@ -1060,7 +1060,8 @@ void saturn_state::stv_vdp1_set_drawpixel( void )
|
|||||||
return;
|
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;
|
drawpixel = &saturn_state::drawpixel_poly;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user