From 6b56f3a5f0a5881b6746aaf0ecc73b2070fde93b Mon Sep 17 00:00:00 2001 From: mooglyguy Date: Thu, 31 May 2018 16:20:22 +0200 Subject: Fix validation, nw --- src/mame/audio/tx1.cpp | 5 +++++ src/mame/audio/tx1.h | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/mame/audio/tx1.cpp b/src/mame/audio/tx1.cpp index 53ff934f121..b6322e9905a 100644 --- a/src/mame/audio/tx1.cpp +++ b/src/mame/audio/tx1.cpp @@ -89,6 +89,11 @@ tx1_sound_device::tx1_sound_device(const machine_config &mconfig, device_type ty { } +tx1j_sound_device::tx1j_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : + tx1_sound_device(mconfig, TX1J_SOUND, tag, owner, clock) +{ +} + //------------------------------------------------- // device_start - device-specific startup //------------------------------------------------- diff --git a/src/mame/audio/tx1.h b/src/mame/audio/tx1.h index 50a91ce0488..b22bf4b981d 100644 --- a/src/mame/audio/tx1.h +++ b/src/mame/audio/tx1.h @@ -119,9 +119,7 @@ protected: class tx1j_sound_device : public tx1_sound_device { public: - tx1j_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : - tx1_sound_device(mconfig, tag, owner, clock) - { } + tx1j_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); protected: -- cgit v1.2.3