Fix validation, nw

This commit is contained in:
mooglyguy 2018-05-31 16:20:22 +02:00
parent d25e17ef6a
commit 6b56f3a5f0
2 changed files with 6 additions and 3 deletions

View File

@ -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
//-------------------------------------------------

View File

@ -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: