diff options
Diffstat (limited to 'src/mess/machine/c2n.c')
-rw-r--r-- | src/mess/machine/c2n.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/c2n.c b/src/mess/machine/c2n.c index d954b70f02e..4e162c86fd7 100644 --- a/src/mess/machine/c2n.c +++ b/src/mess/machine/c2n.c @@ -15,7 +15,7 @@ // MACROS / CONSTANTS //************************************************************************** -#define CASSETTE_TAG "cassette" +#define CASSETTE_TAG "cassette" @@ -57,9 +57,9 @@ machine_config_constructor c2n_device::device_mconfig_additions() const //------------------------------------------------- c2n_device::c2n_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, type, name, tag, owner, clock), - device_pet_datassette_port_interface(mconfig, *this), - m_cassette(*this, CASSETTE_TAG) + : device_t(mconfig, type, name, tag, owner, clock), + device_pet_datassette_port_interface(mconfig, *this), + m_cassette(*this, CASSETTE_TAG) { } |