(MESS) fixed uninitialized variable in src/mess/machines/kb3600.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 14:01:08 +00:00
parent 0536992912
commit 247e39764d
2 changed files with 10 additions and 0 deletions

View File

@ -110,6 +110,15 @@ void ay3600_device::device_start()
}
//-------------------------------------------------
// device_start - device-specific reset
//-------------------------------------------------
void ay3600_device::device_reset()
{
m_ako = 0;
}
//-------------------------------------------------
// device_timer - handler timer events
//-------------------------------------------------

View File

@ -116,6 +116,7 @@ public:
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
virtual void device_config_complete();
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);