diff options
author | 2013-03-20 00:31:11 +0000 | |
---|---|---|
committer | 2013-03-20 00:31:11 +0000 | |
commit | 03379e4ab680e7bd31b48d60953bf2901edd7077 (patch) | |
tree | 40a010b142c4f657aa3c4cf6d3790af92a727a39 /src/emu/machine/ncr539x.h | |
parent | 66b17ada93c7debb206f9bfb573c28768b6ee259 (diff) |
(MESS) fixed clang 3.2 warnings about unused private fields (nw)
Diffstat (limited to 'src/emu/machine/ncr539x.h')
-rw-r--r-- | src/emu/machine/ncr539x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/ncr539x.h b/src/emu/machine/ncr539x.h index b2c4b614967..8b36665aedb 100644 --- a/src/emu/machine/ncr539x.h +++ b/src/emu/machine/ncr539x.h @@ -71,7 +71,7 @@ private: static const int m_fifo_size = 16; UINT8 m_fifo_ptr, m_fifo[m_fifo_size]; - int m_xfer_remaining; // amount in the FIFO when we're in data in phase + //int m_xfer_remaining; // amount in the FIFO when we're in data in phase // read-only registers UINT8 m_status, m_irq_status, m_internal_state, m_fifo_internal_state; |