From 35994d84faedb01f820fd28a356dd9f590538196 Mon Sep 17 00:00:00 2001 From: Joakim Larsson Edstrom Date: Sat, 16 Dec 2017 00:36:27 +0100 Subject: [PATCH] myb3k_kbd: removed unused timer variable --- src/devices/machine/myb3k_kbd.cpp | 1 - src/devices/machine/myb3k_kbd.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/devices/machine/myb3k_kbd.cpp b/src/devices/machine/myb3k_kbd.cpp index a8800bc3cec..ae19da0198f 100644 --- a/src/devices/machine/myb3k_kbd.cpp +++ b/src/devices/machine/myb3k_kbd.cpp @@ -287,7 +287,6 @@ myb3k_keyboard_device::myb3k_keyboard_device( device_t *owner, u32 clock) : device_t(mconfig, type, tag, owner, clock) - , m_scan_timer(nullptr) , m_keyboard_cb() , m_io_kbd_t{ {*this, "MYB3K_T0"}, {*this, "MYB3K_T1"}, {*this, "MYB3K_T2"}, {*this, "MYB3K_T3"}, {*this, "MYB3K_T4"}, {*this, "MYB3K_T5"}, {*this, "MYB3K_T6"}, {*this, "MYB3K_T7"}, diff --git a/src/devices/machine/myb3k_kbd.h b/src/devices/machine/myb3k_kbd.h index 4a34cd9f6a2..adf6ffd5a12 100644 --- a/src/devices/machine/myb3k_kbd.h +++ b/src/devices/machine/myb3k_kbd.h @@ -74,7 +74,6 @@ protected: private: - emu_timer *m_scan_timer; output_delegate m_keyboard_cb; required_ioport m_io_kbd_t[12]; u8 m_io_kbd_state[12][8];