From c7d10617eeabd3e6ed43500c9be3daf272f0f120 Mon Sep 17 00:00:00 2001 From: Nicola Salmoria Date: Sun, 25 May 2008 11:55:28 +0000 Subject: [PATCH] 01741: ldrun4: Sprites are misplaced two pixels to the right. --- src/mame/video/m62.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/m62.c b/src/mame/video/m62.c index 84eb58880d3..8181700e79c 100644 --- a/src/mame/video/m62.c +++ b/src/mame/video/m62.c @@ -664,7 +664,7 @@ VIDEO_START( ldrun4 ) VIDEO_UPDATE( ldrun4 ) { - tilemap_set_scrollx( m62_background, 0, m62_background_hscroll ); + tilemap_set_scrollx( m62_background, 0, m62_background_hscroll-2 ); tilemap_draw( bitmap, cliprect, m62_background, 0, 0 ); draw_sprites( screen->machine, bitmap, cliprect, 0x1f, 0x00, 0x00 );