From 9825dfe6d693cf278de4b5d2589ccd331c07f7d7 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Wed, 6 Feb 2013 16:26:42 +0000 Subject: [PATCH] Fixed linezoom in VDP2, don't laugh --- src/mame/video/stvvdp2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/stvvdp2.c b/src/mame/video/stvvdp2.c index 2972d16ede4..180f9969409 100644 --- a/src/mame/video/stvvdp2.c +++ b/src/mame/video/stvvdp2.c @@ -4264,7 +4264,7 @@ static void stv_vdp2_check_tilemap_with_linescroll(running_machine &machine, bit { prev_scroll_values[i] &= 0x0007ff00; if ( prev_scroll_values[i] & 0x00040000 ) prev_scroll_values[i] |= 0xfff80000; -// incx = prev_scroll_values[i]; + stv2_current_tilemap.incx = prev_scroll_values[i]; i++; }