Fix clang build [-Werror,-Wunused-private-field] (nw)

This commit is contained in:
AJR 2020-06-03 14:28:31 -04:00
parent 167e11a9cf
commit 83e474aad4
2 changed files with 4 additions and 2 deletions

View File

@ -573,6 +573,9 @@ void piratesh_state::machine_start()
save_item(NAME(m_mw_irq_control));
save_item(NAME(m_sound_ctrl));
save_item(NAME(m_sound_nmi_clk));
#else
(void)m_sound_ctrl;
(void)m_sound_nmi_clk;
#endif
}

View File

@ -297,8 +297,7 @@ private:
uint8_t m_ipl;
uint8_t m_palet[3];
uint8_t m_paltbl[8];
uint16_t m_page;
uint8_t m_pcg_char, m_pcg_attr, m_char_change, m_pcg_char0;
uint8_t m_pcg_char, m_pcg_attr, m_char_change;
uint16_t m_pcg_offset[3];
int m_char_count;
attotime m_time;