myb3k_kbd: removed unused timer variable

This commit is contained in:
Joakim Larsson Edstrom 2017-12-16 00:36:27 +01:00
parent 9434fb20a3
commit 35994d84fa
2 changed files with 0 additions and 2 deletions

View File

@ -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"},

View File

@ -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];