From 25099ed33be52417c137f76dee3381d985d9a609 Mon Sep 17 00:00:00 2001 From: Lord-Nightmare Date: Thu, 29 Oct 2020 12:19:19 -0400 Subject: Make the initializer comma order consistent in audio/midway.cpp [Lord Nightmare] --- src/mame/audio/midway.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/audio/midway.cpp b/src/mame/audio/midway.cpp index e7b4a5007c9..58d7c830b8d 100644 --- a/src/mame/audio/midway.cpp +++ b/src/mame/audio/midway.cpp @@ -674,8 +674,8 @@ void midway_sounds_good_device::device_timer(emu_timer &timer, device_timer_id i //------------------------------------------------- midway_turbo_cheap_squeak_device::midway_turbo_cheap_squeak_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : device_t(mconfig, MIDWAY_TURBO_CHEAP_SQUEAK, tag, owner, clock), - device_mixer_interface(mconfig, *this) + : device_t(mconfig, MIDWAY_TURBO_CHEAP_SQUEAK, tag, owner, clock) + , device_mixer_interface(mconfig, *this) , m_cpu(*this, "cpu") , m_pia(*this, "pia") , m_dac(*this, "dac") -- cgit v1.2.3