diff options
Diffstat (limited to 'src/devices/bus/pc_joy')
| -rw-r--r-- | src/devices/bus/pc_joy/pc_joy.cpp | 2 | ||||
| -rw-r--r-- | src/devices/bus/pc_joy/pc_joy_sw.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/pc_joy/pc_joy.cpp b/src/devices/bus/pc_joy/pc_joy.cpp index a0fa667e5ec..14c2b99e8a1 100644 --- a/src/devices/bus/pc_joy/pc_joy.cpp +++ b/src/devices/bus/pc_joy/pc_joy.cpp @@ -15,7 +15,7 @@ const device_type PC_JOY = &device_creator<pc_joy_device>; pc_joy_device::pc_joy_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, PC_JOY, "PC joystick port", tag, owner, clock, "pc_joy", __FILE__), - device_slot_interface(mconfig, *this), + device_slot_interface(mconfig, *this), m_dev(nullptr) { } diff --git a/src/devices/bus/pc_joy/pc_joy_sw.cpp b/src/devices/bus/pc_joy/pc_joy_sw.cpp index 85111b746b7..69a3d5cd75e 100644 --- a/src/devices/bus/pc_joy/pc_joy_sw.cpp +++ b/src/devices/bus/pc_joy/pc_joy_sw.cpp @@ -13,10 +13,10 @@ pc_mssw_pad_device::pc_mssw_pad_device(const machine_config& mconfig, const char m_btn2(*this, "btn2"), m_btn3(*this, "btn3"), m_btn4(*this, "btn4"), - m_conf(*this, "CONFIG"), - m_timer(NULL), - m_count(0), - m_state(0), + m_conf(*this, "CONFIG"), + m_timer(NULL), + m_count(0), + m_state(0), m_active(false) { } |
