diff options
| author | 2010-07-01 21:28:53 +0000 | |
|---|---|---|
| committer | 2010-07-01 21:28:53 +0000 | |
| commit | 2c6e27c547b6a2179b343935f2ecac9c4110cc44 (patch) | |
| tree | cda3c578c06702d379a1d55254d068b58454d829 /src | |
| parent | c8e49537f30dc73e9842af0f57e746953bc050fa (diff) | |
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)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/video/arcadecl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/arcadecl.c b/src/mame/video/arcadecl.c index 5fda34f23c9..c0e83b46588 100644 --- a/src/mame/video/arcadecl.c +++ b/src/mame/video/arcadecl.c @@ -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); } |
