mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
stvvdp2.cpp: disable ROZ optimization if mode is either 2 or 3, fixes at least Bulk Slash and Death Crimson ROZ layer bugs [Angelo Salese]
This commit is contained in:
parent
bf0c3ec0de
commit
cb0a73c077
@ -2244,7 +2244,8 @@ uint8_t saturn_state::stv_vdp2_is_rotation_applied(void)
|
||||
RP.dx == _FIXED_1 &&
|
||||
RP.dy == _FIXED_0 &&
|
||||
RP.kx == _FIXED_1 &&
|
||||
RP.ky == _FIXED_1 )
|
||||
RP.ky == _FIXED_1 &&
|
||||
STV_VDP2_RPMD < 2) // disable optimizations if roz mode is 2 or 3
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user