mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
(MESS) fixed uninitialized member in src/mess/machine/psxcard.c (nw)
This commit is contained in:
parent
0c265e4744
commit
961a340e14
@ -50,6 +50,8 @@ void psxcard_device::device_start()
|
||||
m_owner = dynamic_cast<psx_controller_port_device *>(owner());
|
||||
m_ack_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(psxcard_device::ack_timer), this));
|
||||
|
||||
m_ack = true;
|
||||
|
||||
// save state registrations
|
||||
/* save_item(NAME(pkt));
|
||||
save_item(NAME(pkt_ptr));
|
||||
|
Loading…
Reference in New Issue
Block a user