mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
Fixed MT03329. (nw)
This commit is contained in:
parent
c0f3bc9ad4
commit
410dc9c4e5
@ -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]);
|
||||
|
Loading…
Reference in New Issue
Block a user