summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/micropolis.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-06-21 14:44:06 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-06-21 14:44:06 +0000
commite533a04f2e5690bfc2edac2dc2038f94b4bd903d (patch)
tree583486a98fa559fb449211bece50f1af9790b497 /src/mess/machine/micropolis.c
parentd49ea91e69b0406f3fc2de6034819498661dd93a (diff)
changed rest of devices (except cpu cores) to have shortname and sourcefile (nw)
Diffstat (limited to 'src/mess/machine/micropolis.c')
-rw-r--r--src/mess/machine/micropolis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/micropolis.c b/src/mess/machine/micropolis.c
index a286a07dd0a..20ca9780de8 100644
--- a/src/mess/machine/micropolis.c
+++ b/src/mess/machine/micropolis.c
@@ -379,7 +379,7 @@ void micropolis_reset(device_t *device)
const device_type MICROPOLIS = &device_creator<micropolis_device>;
micropolis_device::micropolis_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, MICROPOLIS, "MICROPOLIS", tag, owner, clock)
+ : device_t(mconfig, MICROPOLIS, "MICROPOLIS", tag, owner, clock, "micropolis", __FILE__)
{
m_token = global_alloc_clear(micropolis_state);
}