mirror of
https://github.com/holub/mame
synced 2025-07-04 09:28:51 +03:00
fixed uninitialized members in src/emu/machine/mm74c922.c (nw)
This commit is contained in:
parent
b9c91faa61
commit
723e928d15
@ -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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user