mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
stvvdp2.cpp: don't repeat ROZ when screen over process is equal to 1, fixes D-Xhird practice stage [Angelo Salese]
This commit is contained in:
parent
e62744eda5
commit
c9ee85b8b2
@ -4667,8 +4667,11 @@ void saturn_state::stv_vdp2_copy_roz_bitmap(bitmap_rgb32 &bitmap,
|
|||||||
clipxmask = clipymask = 0;
|
clipxmask = clipymask = 0;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
/* screen over pattern, not supported */
|
/* screen over pattern */
|
||||||
clipxmask = clipymask = 0;
|
// TODO: not supported, cfr. STV_VDP2_OVPNRA / STV_VDP2_OVPNRB
|
||||||
|
// D-Xhird uses this on practice stage
|
||||||
|
clipxmask = ~planesizex;
|
||||||
|
clipymask = ~planesizey;
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
/* outside display area, scroll screen is transparent */
|
/* outside display area, scroll screen is transparent */
|
||||||
|
Loading…
Reference in New Issue
Block a user