Fixed motos save state problem (m_scroll is used by screen_update_mappy which motos calls, not by screen_update_phozon) (nw)

This commit is contained in:
Ivan Vangelista 2014-07-14 18:34:25 +00:00
parent df1edc3ca4
commit 37a75b6a57

View File

@ -319,8 +319,6 @@ VIDEO_START_MEMBER(mappy_state,phozon)
m_bg_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(mappy_state::phozon_get_tile_info),this),tilemap_mapper_delegate(FUNC(mappy_state::superpac_tilemap_scan),this),8,8,36,28);
m_bg_tilemap->configure_groups(*m_gfxdecode->gfx(0), 15);
save_item(NAME(m_scroll));
}
VIDEO_START_MEMBER(mappy_state,mappy)
@ -329,6 +327,8 @@ VIDEO_START_MEMBER(mappy_state,mappy)
m_bg_tilemap->configure_groups(*m_gfxdecode->gfx(0), 31);
m_bg_tilemap->set_scroll_cols(36);
save_item(NAME(m_scroll));
}