fixed usage of uninitialized member in pit8253_device (nw)

This commit is contained in:
Oliver Stöneberg 2014-04-24 04:41:59 +00:00
parent 3d0f4ef56f
commit ec5d1d8d65

View File

@ -60,6 +60,7 @@ pit8253_device::pit8253_device(const machine_config &mconfig, const char *tag, d
{ {
m_timers[i].gate = 1; m_timers[i].gate = 1;
m_timers[i].phase = 0; m_timers[i].phase = 0;
m_timers[i].clock = 0;
} }
} }
@ -76,6 +77,7 @@ pit8253_device::pit8253_device(const machine_config &mconfig, device_type type,
{ {
m_timers[i].gate = 1; m_timers[i].gate = 1;
m_timers[i].phase = 0; m_timers[i].phase = 0;
m_timers[i].clock = 0;
} }
} }