fixed uninitialized members in src/emu/machine/upd1990a.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-03-09 09:12:19 +00:00
parent 6c5af3ca4a
commit 3b5012fdef

View File

@ -139,6 +139,7 @@ void upd1990a_rtc_device::device_start()
void upd1990a_rtc_device::device_reset()
{
m_tp = 0;
m_c_unlatched = 0;
set_current_time(machine());
}