saa1043.cpp: parenthesized initialization of a member array is a GNU extension (nw)

This commit is contained in:
AJR 2018-04-13 15:59:19 -04:00
parent c2c576dad4
commit 20ec40e79a

View File

@ -18,9 +18,9 @@ DEFINE_DEVICE_TYPE(SAA1043, saa1043_device, "saa1043", "Philips SAA1043")
saa1043_device::saa1043_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, SAA1043, tag, owner, clock)
, m_outputs({ *this, *this, *this, *this, *this, *this,
, m_outputs{ *this, *this, *this, *this, *this, *this,
*this, *this, *this, *this, *this, *this,
*this, *this, *this, *this, *this, *this })
*this, *this, *this, *this, *this, *this }
{
memset(m_outputs_hooked, 0, sizeof(bool) * OUT_COUNT);
}