diff options
author | 2013-06-21 14:44:06 +0000 | |
---|---|---|
committer | 2013-06-21 14:44:06 +0000 | |
commit | e533a04f2e5690bfc2edac2dc2038f94b4bd903d (patch) | |
tree | 583486a98fa559fb449211bece50f1af9790b497 /src/mess/machine/e05a03.c | |
parent | d49ea91e69b0406f3fc2de6034819498661dd93a (diff) |
changed rest of devices (except cpu cores) to have shortname and sourcefile (nw)
Diffstat (limited to 'src/mess/machine/e05a03.c')
-rw-r--r-- | src/mess/machine/e05a03.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/e05a03.c b/src/mess/machine/e05a03.c index 2962497dc07..21c3ffe7e41 100644 --- a/src/mess/machine/e05a03.c +++ b/src/mess/machine/e05a03.c @@ -218,7 +218,7 @@ WRITE_LINE_DEVICE_HANDLER( e05a03_init_w ) const device_type E05A03 = &device_creator<e05a03_device>; e05a03_device::e05a03_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, E05A03, "E05A03", tag, owner, clock) + : device_t(mconfig, E05A03, "E05A03", tag, owner, clock, "e05a03", __FILE__) { m_token = global_alloc_clear(e05a03_state); } |