Fixed MT03329. (nw)

This commit is contained in:
Ivan Vangelista 2014-01-12 21:03:41 +00:00
parent c0f3bc9ad4
commit 410dc9c4e5

View File

@ -172,7 +172,9 @@ TILE_GET_INFO_MEMBER(phoenix_state::get_bg_tile_info)
VIDEO_START_MEMBER(phoenix_state,phoenix)
{
m_videoram_pg[0] = auto_alloc_array(machine(), UINT8, 0x1000);
memset(m_videoram_pg[0], 0x00, 0x1000 * sizeof(UINT8));
m_videoram_pg[1] = auto_alloc_array(machine(), UINT8, 0x1000);
memset(m_videoram_pg[1], 0x00, 0x1000 * sizeof(UINT8));
membank("bank1")->configure_entry(0, m_videoram_pg[0]);
membank("bank1")->configure_entry(1, m_videoram_pg[1]);