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)

This commit is contained in:
Michaël Banaan Ananas 2010-05-13 12:12:21 +00:00
parent 6821949f51
commit cf3333e821

View File

@ -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))