From cf3333e821146a83117a9c00991772a357374d2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Thu, 13 May 2010 12:12:21 +0000 Subject: [PATCH] btime: Background vertical offset was off by one pixel, burger parts positions are correct now. This also means Peter Pepper awkwardly walks in the air, which is the way it is on the PCB. (hap) --- src/mame/video/btime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/btime.c b/src/mame/video/btime.c index c8865450521..e62b75a5e1d 100644 --- a/src/mame/video/btime.c +++ b/src/mame/video/btime.c @@ -403,7 +403,7 @@ static void draw_background( running_machine *machine, bitmap_t *bitmap, const r for (offs = 0; offs < 0x100; offs++) { - int x = 240 - (16 * (offs / 16) + scroll); + int x = 240 - (16 * (offs / 16) + scroll) - 1; int y = 16 * (offs % 16); if (flip_screen_get(machine))