Fixed rendering of not rotated RBG layer in STV VDP2. This fixes garbage on level 4 of Soukyugurentai [Mariusz Wojcieszek]

This commit is contained in:
mariuszw1 2011-01-03 20:45:21 +00:00
parent 09ecf98a30
commit 43534c3f2f

View File

@ -2262,7 +2262,9 @@ static UINT8 stv_vdp2_is_rotation_applied(void)
RP.dxst == _FIXED_0 &&
RP.dyst == _FIXED_1 &&
RP.dx == _FIXED_1 &&
RP.dy == _FIXED_0 )
RP.dy == _FIXED_0 &&
RP.kx == _FIXED_1 &&
RP.ky == _FIXED_1 )
{
return 0;
}