diff options
Diffstat (limited to 'src/mame/drivers/gts80a.cpp')
-rw-r--r-- | src/mame/drivers/gts80a.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gts80a.cpp b/src/mame/drivers/gts80a.cpp index 02b028950e7..d0ff17e18b2 100644 --- a/src/mame/drivers/gts80a.cpp +++ b/src/mame/drivers/gts80a.cpp @@ -355,7 +355,7 @@ MACHINE_CONFIG_START(gts80a_state::gts80a) MCFG_NVRAM_ADD_1FILL("nvram") // must be 1 /* Video */ - MCFG_DEFAULT_LAYOUT(layout_gts80a) + config.set_default_layout(layout_gts80a); /* Devices */ MCFG_DEVICE_ADD("riot1", RIOT6532, XTAL(3'579'545)/4) @@ -476,7 +476,7 @@ MACHINE_CONFIG_START(caveman_state::caveman) MCFG_PALETTE_ADD("palette", 16) - MCFG_DEFAULT_LAYOUT(layout_gts80a_caveman) + config.set_default_layout(layout_gts80a_caveman); MACHINE_CONFIG_END |