mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(MESS) fixed uninitialized member in src/mess/machine/c2040.c (nw)
This commit is contained in:
parent
ed92dfd7ee
commit
c8bd6301c9
1 changed files with 2 additions and 0 deletions
|
@ -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_sr(0),
|
||||
m_pi(0),
|
||||
m_ready(0),
|
||||
m_mode(0),
|
||||
|
@ -1513,6 +1514,7 @@ c2040_device::c2040_device(const machine_config &mconfig, const char *tag, devic
|
|||
m_atna(1),
|
||||
m_ds(-1),
|
||||
m_bit_count(0),
|
||||
m_sr(0),
|
||||
m_pi(0),
|
||||
m_ready(0),
|
||||
m_mode(0),
|
||||
|
|
Loading…
Reference in a new issue