summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/usgames.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/usgames.cpp')
-rw-r--r--src/mame/drivers/usgames.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/usgames.cpp b/src/mame/drivers/usgames.cpp
index cb3f3e8e1e1..21d6ce91b62 100644
--- a/src/mame/drivers/usgames.cpp
+++ b/src/mame/drivers/usgames.cpp
@@ -240,9 +240,10 @@ MACHINE_CONFIG_START(usgames_state::usg32)
MCFG_PALETTE_ADD("palette", 2*256)
MCFG_PALETTE_INIT_OWNER(usgames_state, usgames)
- MCFG_MC6845_ADD("crtc", MC6845, "screen", 18_MHz_XTAL / 16)
- MCFG_MC6845_SHOW_BORDER_AREA(false)
- MCFG_MC6845_CHAR_WIDTH(8)
+ mc6845_device &crtc(MC6845(config, "crtc", 18_MHz_XTAL / 16));
+ crtc.set_screen("screen");
+ crtc.set_show_border_area(false);
+ crtc.set_char_width(8);
/* sound hardware */
SPEAKER(config, "mono").front_center();