mirror of
https://github.com/holub/mame
synced 2025-07-06 02:18:09 +03:00
fixed uninitialized members in src/emu/machine/cdp1871.c (nw)
This commit is contained in:
parent
8c341fc40e
commit
3f8b4d6ffd
@ -98,7 +98,9 @@ cdp1871_device::cdp1871_device(const machine_config &mconfig, const char *tag, d
|
|||||||
m_sense(0),
|
m_sense(0),
|
||||||
m_drive(0),
|
m_drive(0),
|
||||||
m_next_da(CLEAR_LINE),
|
m_next_da(CLEAR_LINE),
|
||||||
m_next_rpt(CLEAR_LINE)
|
m_next_rpt(CLEAR_LINE),
|
||||||
|
m_da(0),
|
||||||
|
m_rpt(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user