summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-09-30 00:00:21 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-09-30 00:00:23 -0400
commit8af4b0b42a647c1ddd463d97c6c84ed4164798fe (patch)
tree9679d8e87366f85e0d8c457ca2b71389b24565ce
parenta7ac2f0dae44df944f8e4db97f193281053a0e0e (diff)
qx10kbd: Remove unused private variables to fix clang build (nw)
-rw-r--r--src/mame/machine/qx10kbd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/qx10kbd.h b/src/mame/machine/qx10kbd.h
index a93a53aa80e..8070548c556 100644
--- a/src/mame/machine/qx10kbd.h
+++ b/src/mame/machine/qx10kbd.h
@@ -29,7 +29,7 @@ private:
required_ioport_array<16> m_rows;
required_device<cpu_device> m_mcu;
emu_timer *m_bit_timer;
- u8 m_line, m_rxd, m_clk;
+ u8 m_rxd;
int m_row, m_clk_state;
};