mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
deco_mlc: fix copypaste error with prev commit
This commit is contained in:
parent
d0fd9649e4
commit
eefa10a7c3
@ -578,7 +578,7 @@ INPUT_PORTS_END
|
||||
|
||||
void gnw_ball_state::gnw_ball(machine_config &config)
|
||||
{
|
||||
sm5a_common(config, 1671, 1080); // R option mask confirmed
|
||||
sm5a_common(config, 1671, 1080); // R mask option confirmed
|
||||
}
|
||||
|
||||
// roms
|
||||
|
@ -307,7 +307,7 @@ void deco_mlc_state::draw_sprites(const rectangle &cliprect, int scanline, u32*
|
||||
indx &= 0x1fff;
|
||||
index_ptr = m_vram + indx * 4;
|
||||
|
||||
if (index_ptr8[2] & 0x0100 && m_screen->frame_number() & 1)
|
||||
if (index_ptr[2] & 0x0100 && m_screen->frame_number() & 1)
|
||||
continue;
|
||||
|
||||
h = (index_ptr[0] >> 8) & 0xf;
|
||||
|
Loading…
Reference in New Issue
Block a user