diff options
author | 2019-02-08 18:35:41 +0100 | |
---|---|---|
committer | 2019-02-08 18:35:41 +0100 | |
commit | c9922586a39b1325d470af995f1e8bd9ecce1be9 (patch) | |
tree | 58f3acce93d7fa18e824053f6ae09f776b14eb2f /src/devices/bus/comx35/clm.cpp | |
parent | 17cd12e89620152835a0be986822900e4570d43b (diff) |
some more MCFG macros removal (nw)
Diffstat (limited to 'src/devices/bus/comx35/clm.cpp')
-rw-r--r-- | src/devices/bus/comx35/clm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/comx35/clm.cpp b/src/devices/bus/comx35/clm.cpp index 333566eda1a..a7809731bcd 100644 --- a/src/devices/bus/comx35/clm.cpp +++ b/src/devices/bus/comx35/clm.cpp @@ -145,7 +145,7 @@ MACHINE_CONFIG_START(comx_clm_device::device_add_mconfig) MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500)) MCFG_SCREEN_REFRESH_RATE(50) - MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_comx_clm) + GFXDECODE(config, "gfxdecode", m_palette, gfx_comx_clm); PALETTE(config, m_palette, palette_device::MONOCHROME); MC6845(config, m_crtc, XTAL(14'318'181)/7); |