mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
regression fix way back at r152, atarimo_set_xscroll wasn't updated when some MDRV_SCREEN_RAW_PARAMS were increased by 8 (like with rampart.c)
This commit is contained in:
parent
c8e49537f3
commit
2c6e27c547
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ VIDEO_START( arcadecl )
|
|||
atarimo_init(machine, 0, &modesc);
|
||||
|
||||
/* set the intial scroll offset */
|
||||
atarimo_set_xscroll(0, -4);
|
||||
atarimo_set_xscroll(0, -12);
|
||||
atarimo_set_yscroll(0, 0x110);
|
||||
state->has_mo = (machine->gfx[0]->total_elements > 10);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue