Previous 199869 Revisions Next

r21974 Wednesday 20th March, 2013 at 00:38:54 UTC by Oliver Stöneberg
more fixes for clang 3.2 unused private field warnings (nw)
[src/mame/audio]gottlieb.c
[src/mame/includes]gottlieb.h

trunk/src/mame/includes/gottlieb.h
r21973r21974
121121   optional_device<votrax_sc01_device> m_votrax;
122122
123123   // internal state
124   bool            m_populate_votrax;
124   //bool            m_populate_votrax;
125125   UINT8           m_last_speech_clock;
126126
127127#if USE_FAKE_VOTRAX
trunk/src/mame/audio/gottlieb.c
r21973r21974
343343      m_riot(*this, "riot"),
344344      m_dac(*this, "dac"),
345345      m_votrax(*this, "votrax"),
346      m_populate_votrax(false),
346      //m_populate_votrax(false),
347347      m_last_speech_clock(0)
348348#if USE_FAKE_VOTRAX
349349      , m_samples(*this, ":samples"),
r21973r21974
361361      m_riot(*this, "riot"),
362362      m_dac(*this, "dac"),
363363      m_votrax(*this, "votrax"),
364      m_populate_votrax(populate_votrax),
364      //m_populate_votrax(populate_votrax),
365365      m_last_speech_clock(0)
366366#if USE_FAKE_VOTRAX
367367      , m_samples(*this, ":samples"),

Previous 199869 Revisions Next


© 1997-2024 The MAME Team