diff options
author | 2013-03-26 15:18:37 +0000 | |
---|---|---|
committer | 2013-03-26 15:18:37 +0000 | |
commit | 051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch) | |
tree | 7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/mess/machine/mface2.c | |
parent | ffbe9bdcca43cb1f645cc0387f0835523471b97a (diff) |
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/mess/machine/mface2.c')
-rw-r--r-- | src/mess/machine/mface2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/mface2.c b/src/mess/machine/mface2.c index dc9cefc6a61..e4b26cf307c 100644 --- a/src/mess/machine/mface2.c +++ b/src/mess/machine/mface2.c @@ -314,7 +314,7 @@ ioport_constructor cpc_multiface2_device::device_input_ports() const //************************************************************************** cpc_multiface2_device::cpc_multiface2_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, CPC_MFACE2, "Multiface II", tag, owner, clock), + device_t(mconfig, CPC_MFACE2, "Multiface II", tag, owner, clock, "cpc_mf2", __FILE__), device_cpc_expansion_card_interface(mconfig, *this) { } |