From a4f7daba5a6025a17b1c5654aecdd51384237c4b Mon Sep 17 00:00:00 2001 From: David Haywood Date: Mon, 7 Jan 2013 22:00:33 +0000 Subject: [PATCH] shift outrun / turbo outrun sprites by 1 pixel in the x direction, reference point turbo outrun course map, real hardware isn't glitched like MAME was. (nw) --- src/mame/video/sega16sp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/sega16sp.c b/src/mame/video/sega16sp.c index 443901aaf7d..9ec2bc88867 100644 --- a/src/mame/video/sega16sp.c +++ b/src/mame/video/sega16sp.c @@ -1037,7 +1037,7 @@ sega_outrun_sprite_device::sega_outrun_sprite_device(const machine_config &mconf : sega_16bit_sprite_device(mconfig, SEGA_OUTRUN_SPRITES, "Sega Out Run Sprites", tag, owner), m_is_xboard(false) { - set_origin(190, 0x00); + set_origin(189, 0x00); } sega_outrun_sprite_device::sega_outrun_sprite_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock, bool xboard_variant)