(MESS) fixed uninitialized member in src/mess/machine/c2040.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 20:44:46 +00:00
parent d6a09d4438
commit a479bbf200

View File

@ -1477,6 +1477,7 @@ c2040_device::c2040_device(const machine_config &mconfig, device_type type, cons
m_atna(1),
m_ds(-1),
m_bit_count(0),
m_pi(0),
m_ready(0),
m_mode(0),
m_rw(0),
@ -1512,6 +1513,7 @@ c2040_device::c2040_device(const machine_config &mconfig, const char *tag, devic
m_atna(1),
m_ds(-1),
m_bit_count(0),
m_pi(0),
m_ready(0),
m_mode(0),
m_rw(0),