(MESS) fixed uninitialized variable in src/mess/machine/kb_keytro.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 16:29:45 +00:00
parent c0d9fc2c1e
commit f9b71bd8a0

View File

@ -429,6 +429,7 @@ void pc_kbd_keytronic_pc3270_device::device_reset()
{
/* set default values */
m_p3 = 0xff;
m_last_write_addr = 0;
}