diff options
Diffstat (limited to 'src/devices/machine/aakart.cpp')
-rw-r--r-- | src/devices/machine/aakart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/aakart.cpp b/src/devices/machine/aakart.cpp index 762a1a2f8b9..7931f1c019d 100644 --- a/src/devices/machine/aakart.cpp +++ b/src/devices/machine/aakart.cpp @@ -40,9 +40,9 @@ const device_type AAKART = &device_creator<aakart_device>; //------------------------------------------------- aakart_device::aakart_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, AAKART, "AAKART", tag, owner, clock, "aakart", __FILE__), + : device_t(mconfig, AAKART, "AAKART", tag, owner, clock, "aakart", __FILE__), m_rxtimer(nullptr), m_txtimer(nullptr), m_mousetimer(nullptr), m_keybtimer(nullptr), m_out_tx_cb(*this), - m_out_rx_cb(*this) + m_out_rx_cb(*this), m_tx_latch(0), m_rx(0), m_new_command(0), m_status(0), m_mouse_enable(0), m_keyb_enable(0), m_keyb_row(0), m_keyb_col(0), m_keyb_state(0) { } |