mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(MESS) fixed uninitialized memory in src/mess/drivers/nakajies.c (nw)
This commit is contained in:
parent
0c69058bb1
commit
6c5af3ca4a
1 changed files with 1 additions and 0 deletions
|
@ -651,6 +651,7 @@ void nakajies_state::machine_reset()
|
|||
{
|
||||
m_bank[i] = 0;
|
||||
}
|
||||
memset(m_ram_base, 0, m_ram_size);
|
||||
update_banks();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue