From 43534c3f2f081464e42a2e94a910374bc340d6b7 Mon Sep 17 00:00:00 2001 From: mariuszw1 Date: Mon, 3 Jan 2011 20:45:21 +0000 Subject: [PATCH] Fixed rendering of not rotated RBG layer in STV VDP2. This fixes garbage on level 4 of Soukyugurentai [Mariusz Wojcieszek] --- src/mame/video/stvvdp2.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mame/video/stvvdp2.c b/src/mame/video/stvvdp2.c index 674afd38ddb..510af7e9eff 100644 --- a/src/mame/video/stvvdp2.c +++ b/src/mame/video/stvvdp2.c @@ -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; }