more fixes for clang 3.2 unused private field warnings (nw)

This commit is contained in:
Oliver Stöneberg 2013-03-20 00:38:54 +00:00
parent 9ac5ce729c
commit 9f4bdaa97a
2 changed files with 3 additions and 3 deletions

View File

@ -343,7 +343,7 @@ gottlieb_sound_r1_device::gottlieb_sound_r1_device(const machine_config &mconfig
m_riot(*this, "riot"),
m_dac(*this, "dac"),
m_votrax(*this, "votrax"),
m_populate_votrax(false),
//m_populate_votrax(false),
m_last_speech_clock(0)
#if USE_FAKE_VOTRAX
, m_samples(*this, ":samples"),
@ -361,7 +361,7 @@ gottlieb_sound_r1_device::gottlieb_sound_r1_device(const machine_config &mconfig
m_riot(*this, "riot"),
m_dac(*this, "dac"),
m_votrax(*this, "votrax"),
m_populate_votrax(populate_votrax),
//m_populate_votrax(populate_votrax),
m_last_speech_clock(0)
#if USE_FAKE_VOTRAX
, m_samples(*this, ":samples"),

View File

@ -121,7 +121,7 @@ private:
optional_device<votrax_sc01_device> m_votrax;
// internal state
bool m_populate_votrax;
//bool m_populate_votrax;
UINT8 m_last_speech_clock;
#if USE_FAKE_VOTRAX