mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
more fixes for clang 3.2 unused private field warnings (nw)
This commit is contained in:
parent
9ac5ce729c
commit
9f4bdaa97a
@ -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"),
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user