From 9f4bdaa97aeb249cceb37166e321fd7f5206c61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 20 Mar 2013 00:38:54 +0000 Subject: [PATCH] more fixes for clang 3.2 unused private field warnings (nw) --- src/mame/audio/gottlieb.c | 4 ++-- src/mame/includes/gottlieb.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/audio/gottlieb.c b/src/mame/audio/gottlieb.c index 880f4e24ccb..da3be479e12 100644 --- a/src/mame/audio/gottlieb.c +++ b/src/mame/audio/gottlieb.c @@ -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"), diff --git a/src/mame/includes/gottlieb.h b/src/mame/includes/gottlieb.h index cedf820f13e..5b8fd4fcfff 100644 --- a/src/mame/includes/gottlieb.h +++ b/src/mame/includes/gottlieb.h @@ -121,7 +121,7 @@ private: optional_device m_votrax; // internal state - bool m_populate_votrax; + //bool m_populate_votrax; UINT8 m_last_speech_clock; #if USE_FAKE_VOTRAX