diff --git a/src/devices/machine/saa1043.cpp b/src/devices/machine/saa1043.cpp index a45b14e0764..2ebfe38e2e7 100644 --- a/src/devices/machine/saa1043.cpp +++ b/src/devices/machine/saa1043.cpp @@ -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); }