mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
Fixed tetrisp2.c save state regression (nw)
This commit is contained in:
parent
ad0d51d3d7
commit
11e81ffba1
@ -228,6 +228,9 @@ VIDEO_START_MEMBER(tetrisp2_state,tetrisp2)
|
||||
// should be smaller and mirrored like m32 I guess
|
||||
m_priority = auto_alloc_array(machine(), UINT8, 0x40000);
|
||||
ms32_rearrange_sprites(machine(), "gfx1");
|
||||
|
||||
save_item(NAME(m_flipscreen_old));
|
||||
save_pointer(NAME(m_priority), 0x40000);
|
||||
}
|
||||
|
||||
VIDEO_START_MEMBER(tetrisp2_state,nndmseal)
|
||||
@ -251,6 +254,9 @@ VIDEO_START_MEMBER(tetrisp2_state,rockntread)
|
||||
// should be smaller and mirrored like m32 I guess
|
||||
m_priority = auto_alloc_array(machine(), UINT8, 0x40000);
|
||||
ms32_rearrange_sprites(machine(), "gfx1");
|
||||
|
||||
save_item(NAME(m_flipscreen_old));
|
||||
save_pointer(NAME(m_priority), 0x40000);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user