summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2016-03-31 13:50:31 -0400
committer AJR <ajrhacker@users.noreply.github.com>2016-03-31 13:50:31 -0400
commitb0e033146a99958b9eb8332abc46ae1416e9369f (patch)
tree5294f5a8342e2eef0a5316acab5b359798be430e /src/devices/sound
parentbce4fcd1d76b2339d4b00cf177e4a072f48a6544 (diff)
Avoid auto return types; silence some unused variable warnings (nw)
Diffstat (limited to 'src/devices/sound')
-rw-r--r--src/devices/sound/tms5220.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/devices/sound/tms5220.cpp b/src/devices/sound/tms5220.cpp
index b31e4734751..1e2910f994d 100644
--- a/src/devices/sound/tms5220.cpp
+++ b/src/devices/sound/tms5220.cpp
@@ -2094,6 +2094,14 @@ tms5220_device::tms5220_device(const machine_config &mconfig, const char *tag, d
m_data_cb(*this),
m_romclk_cb(*this)
{
+ // prevent unused variable warnings
+ (void)m_PDC;
+ (void)m_CTL_pins;
+ (void)m_state;
+ (void)m_address;
+ (void)m_next_is_address;
+ (void)m_addr_bit;
+ (void)m_CTL_buffer;
}
tms5220_device::tms5220_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)