summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devintrf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/devintrf.h')
-rw-r--r--src/emu/devintrf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/devintrf.h b/src/emu/devintrf.h
index ed7c058d0c3..6ed7bba226a 100644
--- a/src/emu/devintrf.h
+++ b/src/emu/devintrf.h
@@ -99,13 +99,13 @@ device_t *_ConfigClass::alloc_device(running_machine &machine) const \
//**************************************************************************
// configure devices
-#define MDRV_DEVICE_CONFIG(_config) \
+#define MCFG_DEVICE_CONFIG(_config) \
device_config::static_set_static_config(device, &(_config)); \
-#define MDRV_DEVICE_CONFIG_CLEAR() \
+#define MCFG_DEVICE_CONFIG_CLEAR() \
device_config::static_set_static_config(device, NULL); \
-#define MDRV_DEVICE_CLOCK(_clock) \
+#define MCFG_DEVICE_CLOCK(_clock) \
device_config::static_set_clock(device, _clock); \