summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2015-02-26 09:39:42 -0600
committer cracyc <cracyc@users.noreply.github.com>2015-02-26 09:39:42 -0600
commitcf05cdf6835f5f1f0480f0752220491d9ad62fd9 (patch)
tree1fbfd1aa06442749565b7c45601dbe7034bb62a2
parentce27de6af1f03ee3ff24df03b32c1f8e13aa0178 (diff)
(mess) pcd_kbd: "private field 'm_data' is not used" (nw)
-rw-r--r--src/mess/machine/pcd_kbd.c1
-rw-r--r--src/mess/machine/pcd_kbd.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/mess/machine/pcd_kbd.c b/src/mess/machine/pcd_kbd.c
index 34729180816..47d3c9847f5 100644
--- a/src/mess/machine/pcd_kbd.c
+++ b/src/mess/machine/pcd_kbd.c
@@ -219,7 +219,6 @@ ioport_constructor pcd_keyboard_device::device_input_ports() const
pcd_keyboard_device::pcd_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, PCD_KEYBOARD, "PC-D Keyboard", tag, owner, clock, "pcd_kbd", __FILE__),
m_rows(*this, "ROW"),
- m_data(0),
m_p1(0),
m_out_tx_handler(*this)
{
diff --git a/src/mess/machine/pcd_kbd.h b/src/mess/machine/pcd_kbd.h
index e8a5e419f8b..9e013017b12 100644
--- a/src/mess/machine/pcd_kbd.h
+++ b/src/mess/machine/pcd_kbd.h
@@ -28,7 +28,7 @@ public:
DECLARE_WRITE_LINE_MEMBER( t0_w );
private:
required_ioport_array<17> m_rows;
- UINT8 m_data, m_p1;
+ UINT8 m_p1;
bool m_t0;
devcb_write_line m_out_tx_handler;
};