comquest.cpp: Fixed clang unused private data member warnings.

There's commented-out code that uses m_data, but nothing at all uses the
other members, and there's nothing to indicate what they're supposed to
represent, so I removed them altogether.
This commit is contained in:
Vas Crabb 2021-12-02 04:47:54 +11:00
parent 759c54b27d
commit b44c584342

View File

@ -67,12 +67,7 @@ protected:
private:
required_device<cpu_device> m_maincpu;
uint8_t m_data[128][8];
void *m_timer;
int m_line;
int m_dma_activ;
int m_state;
int m_count;
[[maybe_unused]] uint8_t m_data[128][8];
[[maybe_unused]] uint8_t comquest_read(offs_t offset);
[[maybe_unused]] void comquest_write(offs_t offset, uint8_t data);