mirror of
https://github.com/holub/mame
synced 2025-05-30 09:33:05 +03:00
saa1043.cpp: parenthesized initialization of a member array is a GNU extension (nw)
This commit is contained in:
parent
c2c576dad4
commit
20ec40e79a
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user