mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
(MESS) fixed uninitialized variable in src/mess/machines/kb3600.c (nw)
This commit is contained in:
parent
0536992912
commit
247e39764d
@ -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
|
||||
//-------------------------------------------------
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user