mirror of
https://github.com/holub/mame
synced 2025-04-16 05:24:54 +03:00
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:
parent
759c54b27d
commit
b44c584342
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user