hharryu: fixed tilemaps offsets [Roberto Zandona']

This commit is contained in:
Roberto Zandona 2011-10-30 21:58:57 +00:00
parent f2374a2906
commit 2db3f8b314
3 changed files with 10 additions and 1 deletions

View File

@ -2265,7 +2265,7 @@ static MACHINE_CONFIG_START( hharryu, m72_state )
MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
MCFG_SCREEN_UPDATE(m72)
MCFG_VIDEO_START(rtype2)
MCFG_VIDEO_START(hharryu)
/* sound hardware */
MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")

View File

@ -49,6 +49,7 @@ VIDEO_START( majtitle );
VIDEO_START( hharry );
VIDEO_START( poundfor );
VIDEO_START( xmultipl );
VIDEO_START( hharryu );
READ16_HANDLER( m72_palette1_r );
READ16_HANDLER( m72_palette2_r );

View File

@ -187,6 +187,14 @@ VIDEO_START( poundfor )
tilemap_set_scrolldx(state->m_bg_tilemap,6,0);
}
VIDEO_START( hharryu )
{
m72_state *state = machine.driver_data<m72_state>();
VIDEO_START_CALL(rtype2);
tilemap_set_scrolldx(state->m_fg_tilemap,4,0);
tilemap_set_scrolldx(state->m_bg_tilemap,6,0);
}
/* Major Title has a larger background RAM, and rowscroll */
VIDEO_START( majtitle )