mirror of
https://github.com/holub/mame
synced 2025-05-20 20:58:51 +03:00
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:
parent
6821949f51
commit
cf3333e821
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user