fixed usage of uninitialized member in i8275_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-05-01 17:29:48 +00:00
parent 25e667434c
commit 73f2391262

View File

@ -121,6 +121,7 @@ i8275_device::i8275_device(const machine_config &mconfig, const char *tag, devic
m_char_blink(0),
m_stored_attr(0)
{
memset(m_param, 0x00, sizeof(m_param));
}