mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fixed usage of uninitialized members in t11_device (nw)
This commit is contained in:
parent
0bd2b9a46d
commit
4cb494b8dc
@ -44,6 +44,8 @@ t11_device::t11_device(const machine_config &mconfig, const char *tag, device_t
|
|||||||
, c_initial_mode(0)
|
, c_initial_mode(0)
|
||||||
{
|
{
|
||||||
m_is_octal = true;
|
m_is_octal = true;
|
||||||
|
memset(m_reg, 0x00, sizeof(m_reg));
|
||||||
|
memset(&m_psw, 0x00, sizeof(m_psw));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user