summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/adp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/adp.cpp')
-rw-r--r--src/mame/drivers/adp.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/adp.cpp b/src/mame/drivers/adp.cpp
index c5a3c9f4687..cd926cf31aa 100644
--- a/src/mame/drivers/adp.cpp
+++ b/src/mame/drivers/adp.cpp
@@ -629,7 +629,8 @@ MACHINE_CONFIG_START(adp_state::funland)
MCFG_DEVICE_REMOVE("palette")
MCFG_PALETTE_ADD_INIT_BLACK("palette", 0x100)
- MCFG_RAMDAC_ADD("ramdac", ramdac_map, "palette")
+ ramdac_device &ramdac(RAMDAC(config, "ramdac", 0, m_palette));
+ ramdac.set_addrmap(0, &adp_state::ramdac_map);
MCFG_DEVICE_MODIFY("acrtc")
MCFG_HD63484_ADDRESS_MAP(fstation_hd63484_map)