mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
fixed uninitialized member in src/emu/machine/am9517a.c (nw)
This commit is contained in:
parent
4b676a45e1
commit
5a50cd56b7
@ -376,7 +376,8 @@ am9517a_device::am9517a_device(const machine_config &mconfig, const char *tag, d
|
||||
device_execute_interface(mconfig, *this),
|
||||
m_icount(0),
|
||||
m_hack(0),
|
||||
m_ready(1)
|
||||
m_ready(1),
|
||||
m_command(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user