fixed uninitialized member in src/emu/machine/am9517a.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-20 22:52:38 +00:00
parent 4b676a45e1
commit 5a50cd56b7

View File

@ -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)
{
}