fixed uninitialized members in src/emu/machine/mm74c922.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-20 23:09:12 +00:00
parent b9c91faa61
commit 723e928d15

View File

@ -116,8 +116,10 @@ inline void mm74c922_device::detect_keypress()
mm74c922_device::mm74c922_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) mm74c922_device::mm74c922_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, MM74C922, "MM74C922", tag, owner, clock), : device_t(mconfig, MM74C922, "MM74C922", tag, owner, clock),
m_inhibit(0),
m_x(0), m_x(0),
m_y(0), m_y(0),
m_da(0),
m_next_da(0) m_next_da(0)
{ {
} }