diff options
| author | 2010-05-13 12:12:21 +0000 | |
|---|---|---|
| committer | 2010-05-13 12:12:21 +0000 | |
| commit | cf3333e821146a83117a9c00991772a357374d2d (patch) | |
| tree | 266b92e4a4964e71ed7f1286e80f8a794dda67b7 /src | |
| parent | 6821949f5126b615898d161cdd2fbb33c4ca1343 (diff) | |
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)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/video/btime.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |
