mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
(MESS) fixed uninitialized member in psx_controller_port_device (nw)
This commit is contained in:
parent
51907678d3
commit
73f84292ab
@ -115,7 +115,7 @@ public:
|
||||
|
||||
protected:
|
||||
virtual void device_start() {}
|
||||
virtual void device_reset() { m_tx = true; }
|
||||
virtual void device_reset() { m_tx = true; m_ack = true; }
|
||||
virtual void device_config_complete();
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user