summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/esqvfd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/esqvfd.cpp')
-rw-r--r--src/mame/machine/esqvfd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/esqvfd.cpp b/src/mame/machine/esqvfd.cpp
index cbf27db5218..987e0b72596 100644
--- a/src/mame/machine/esqvfd.cpp
+++ b/src/mame/machine/esqvfd.cpp
@@ -170,7 +170,7 @@ void esqvfd_device::update_display()
/* 2x40 VFD display used in the ESQ-1, VFX-SD, SD-1, and others */
MACHINE_CONFIG_START(esq2x40_device::device_add_mconfig)
- MCFG_DEFAULT_LAYOUT(layout_esq2by40)
+ config.set_default_layout(layout_esq2by40);
MACHINE_CONFIG_END
void esq2x40_device::write_char(int data)
@@ -303,7 +303,7 @@ esq2x40_device::esq2x40_device(const machine_config &mconfig, const char *tag, d
/* 1x22 display from the VFX (not right, but it'll do for now) */
MACHINE_CONFIG_START(esq1x22_device::device_add_mconfig)
- MCFG_DEFAULT_LAYOUT(layout_esq1by22)
+ config.set_default_layout(layout_esq1by22);
MACHINE_CONFIG_END
@@ -350,7 +350,7 @@ esq1x22_device::esq1x22_device(const machine_config &mconfig, const char *tag, d
/* SQ-1 display, I think it's really an LCD but we'll deal with it for now */
MACHINE_CONFIG_START(esq2x40_sq1_device::device_add_mconfig)
- MCFG_DEFAULT_LAYOUT(layout_esq2by40) // we use the normal 2x40 layout
+ config.set_default_layout(layout_esq2by40); // we use the normal 2x40 layout
MACHINE_CONFIG_END
void esq2x40_sq1_device::write_char(int data)