mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
Fix unused variable (nw)
This commit is contained in:
parent
cb610cb8cf
commit
897c8ab737
@ -501,14 +501,12 @@ void lethal_state::machine_start()
|
||||
|
||||
void lethal_state::machine_reset()
|
||||
{
|
||||
UINT8 *prgrom = (UINT8 *)memregion("maincpu")->base();
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 4; i++)
|
||||
for (int i = 0; i < 4; i++)
|
||||
m_layer_colorbase[i] = 0;
|
||||
|
||||
m_sprite_colorbase = 0;
|
||||
m_cur_control2 = 0;
|
||||
m_bank4800->set_bank(0);
|
||||
}
|
||||
|
||||
static const k056832_interface lethalen_k056832_intf =
|
||||
|
Loading…
Reference in New Issue
Block a user